public class OfbizPortletConfigurationStore extends Object implements PortletConfigurationStore
| Modifier and Type | Class and Description |
|---|---|
static class |
OfbizPortletConfigurationStore.Columns |
static class |
OfbizPortletConfigurationStore.UserPreferenceColumns |
| Modifier and Type | Field and Description |
|---|---|
static String |
TABLE |
static String |
USER_PREFERENCES_TABLE |
| Constructor and Description |
|---|
OfbizPortletConfigurationStore(OfBizDelegator delegator,
JsonEntityPropertyManager jsonEntityPropertyManager) |
| Modifier and Type | Method and Description |
|---|---|
PortletConfiguration |
addDashboardItem(Long pageId,
Long portletConfigurationId,
Integer column,
Integer row,
io.atlassian.fugue.Option<URI> openSocialSpecUri,
com.atlassian.gadgets.dashboard.Color color,
Map<String,String> userPreferences,
io.atlassian.fugue.Option<com.atlassian.plugin.ModuleCompleteKey> moduleKey)
Creates and adds a new
PortletConfiguration to given PortalPage. |
PortletConfiguration |
addGadget(Long pageId,
Long portletConfigurationId,
Integer column,
Integer row,
URI gadgetXml,
com.atlassian.gadgets.dashboard.Color color,
Map<String,String> userPreferences)
Creates and adds a new
PortletConfiguration to given PortalPage. |
void |
delete(PortletConfiguration pc)
Deletes the given
PortletConfiguration. |
EnclosedIterable<PortletConfiguration> |
getAllPortletConfigurations()
Returns an iterable over all PortletConfigurations available in the database.
|
List<PortletConfiguration> |
getByPortalPage(Long portalPageId)
Get all
PortletConfiguration objects for a given PortalPage id. |
PortletConfiguration |
getByPortletId(Long portletId)
Gall a
PortletConfiguration by its id. |
protected void |
removePropertySet(org.ofbiz.core.entity.GenericValue gv) |
void |
store(PortletConfiguration pc)
Saves the given
PortletConfiguration. |
void |
updateGadgetColor(Long gadgetId,
com.atlassian.gadgets.dashboard.Color color)
Given a gadget, this method will update the color value for this gadget.
|
void |
updateGadgetPosition(Long gadgetId,
int row,
int column,
Long dashboardId)
Given a gadget, this method will update it's row, column and parent dashboard id.
|
void |
updateUserPrefs(Long gadgetId,
Map<String,String> userPrefs)
Given a gadget, this method updates all userprefs for this gadget.
|
public static final String TABLE
public static final String USER_PREFERENCES_TABLE
public OfbizPortletConfigurationStore(OfBizDelegator delegator, JsonEntityPropertyManager jsonEntityPropertyManager)
public List<PortletConfiguration> getByPortalPage(Long portalPageId)
PortletConfigurationStorePortletConfiguration objects for a given PortalPage id.getByPortalPage in interface PortletConfigurationStoreportalPageId - The id of the page to retreive all configurations for.public PortletConfiguration getByPortletId(Long portletId)
PortletConfigurationStorePortletConfiguration by its id.getByPortletId in interface PortletConfigurationStoreportletId - The id of the portlet configuration.public void delete(PortletConfiguration pc)
PortletConfigurationStorePortletConfiguration.delete in interface PortletConfigurationStorepc - The PortletConfiguration to delete.public void updateGadgetPosition(Long gadgetId, int row, int column, Long dashboardId)
PortletConfigurationStoreupdateGadgetPosition in interface PortletConfigurationStoregadgetId - The id of the gadget being updatedrow - The new row value for this gadgetcolumn - The new column value for this gadgetdashboardId - The new parent dashboard id value for this gadgetpublic void updateGadgetColor(Long gadgetId, com.atlassian.gadgets.dashboard.Color color)
PortletConfigurationStoreupdateGadgetColor in interface PortletConfigurationStoregadgetId - The id of the gadget being updatedcolor - The new color value for this gadgetpublic void updateUserPrefs(Long gadgetId, Map<String,String> userPrefs)
PortletConfigurationStoreupdateUserPrefs in interface PortletConfigurationStoregadgetId - The id of the gadget being updateduserPrefs - The new userprefs to set for this gadget.public void store(PortletConfiguration pc)
PortletConfigurationStorePortletConfiguration.store in interface PortletConfigurationStorepc - The PortletConfiguration to save.public PortletConfiguration addGadget(Long pageId, Long portletConfigurationId, Integer column, Integer row, URI gadgetXml, com.atlassian.gadgets.dashboard.Color color, Map<String,String> userPreferences)
PortletConfigurationStorePortletConfiguration to given PortalPage. This should
be used to add a gadget.addGadget in interface PortletConfigurationStorepageId - The id of the page to add the configuration to.portletConfigurationId - The id to use for adding the gadget. May be null for a generated id.column - The column position of the portlet.row - The row position of the portletgadgetXml - A URI specifying the location of the gadget XML. May be null if this is a legacy portlet.color - The chrome color for the gadget.userPreferences - A map of key -> value user preference pairs used to store gadget configuration.PortletConfigurationStore.addDashboardItem(Long, Long, Integer, Integer, io.atlassian.fugue.Option, com.atlassian.gadgets.dashboard.Color, java.util.Map, io.atlassian.fugue.Option) instead. Since v6.4public PortletConfiguration addDashboardItem(Long pageId, Long portletConfigurationId, Integer column, Integer row, io.atlassian.fugue.Option<URI> openSocialSpecUri, com.atlassian.gadgets.dashboard.Color color, Map<String,String> userPreferences, io.atlassian.fugue.Option<com.atlassian.plugin.ModuleCompleteKey> moduleKey)
PortletConfigurationStorePortletConfiguration to given PortalPage. This should
be used to add a gadget.addDashboardItem in interface PortletConfigurationStorepageId - The id of the page to add the configuration to.portletConfigurationId - The id to use for adding the gadget. May be null for a generated id.column - The column position of the portlet.row - The row position of the portletopenSocialSpecUri - A URI specifying the location of the gadget XML. May be an empty option if this is
a legacy portlet or dashboard item without uri replacement.color - The chrome color for the gadget.userPreferences - A map of key -> value user preference pairs used to store gadget configuration.moduleKey - A complete module key of dashboard items.public EnclosedIterable<PortletConfiguration> getAllPortletConfigurations()
PortletConfigurationStoregetAllPortletConfigurations in interface PortletConfigurationStoreprotected void removePropertySet(org.ofbiz.core.entity.GenericValue gv)
Copyright © 2002-2024 Atlassian. All Rights Reserved.