|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface PortletConfigurationStore
Store for the PortletConfiguration
domain object.
Method Summary | |
---|---|
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. |
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. |
Method Detail |
---|
List<PortletConfiguration> getByPortalPage(Long portalPageId)
PortletConfiguration
objects for a given PortalPage
id.
portalPageId
- The id of the page to retreive all configurations for.
PortletConfiguration getByPortletId(Long portletId)
PortletConfiguration
by its id.
portletId
- The id of the portlet configuration
void delete(PortletConfiguration pc)
PortletConfiguration
.
pc
- The PortletConfiguration to delete.void store(PortletConfiguration pc)
PortletConfiguration
.
pc
- The PortletConfiguration to save.void updateGadgetPosition(Long gadgetId, int row, int column, Long dashboardId)
gadgetId
- 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 gadgetvoid updateGadgetColor(Long gadgetId, com.atlassian.gadgets.dashboard.Color color)
gadgetId
- The id of the gadget being updatedcolor
- The new color value for this gadgetvoid updateUserPrefs(Long gadgetId, Map<String,String> userPrefs)
gadgetId
- The id of the gadget being updateduserPrefs
- The new userprefs to set for this gadget.PortletConfiguration addGadget(Long pageId, Long portletConfigurationId, Integer column, Integer row, URI gadgetXml, com.atlassian.gadgets.dashboard.Color color, Map<String,String> userPreferences)
PortletConfiguration
to given PortalPage. This should
be used to add a gadget.
pageId
- The id of the page to add the configuration to.portletConfigurationId
- The id to use for adding the gadget. This will correspond to JiraGadgetStateFactory.createGadgetState(java.net.URI)
. 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.
EnclosedIterable<PortletConfiguration> getAllPortletConfigurations()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |