|
© 2003 BEA Systems, Inc. | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
This is the primary interface for performing persistent store operations
on LayoutDefinitions
. In general this interface provides coarse grain
getters and fine grain setters.
It is important to note that all methods on this interface are fully internationalized and entitled. All titles and descriptions on the objects returned by these methods are internationalized to the prefered locale. Also, all methods are entitled, meaning if the caller does not have the required credentials the method may return a subset of the actual list or be unable to perform the specified function.
Method Summary | |
LayoutDefinition |
createLayoutDefinition(CustomizationContext customizationContext,
LayoutDefinition layoutDefinition)
Creates a new LayoutView Definition with its placeholders. |
void |
deleteLayoutDefinition(CustomizationContext customizationContext,
LayoutDefinitionId layoutDefinitionId)
Delete a layout definition and all its associated placeholders.. |
void |
deleteLayoutDefinitionWithReplacement(CustomizationContext customizationContext,
LayoutDefinitionId deleteLayoutDefinitionId,
LayoutDefinitionId replacementLayoutDefinitionId)
Delete a layout definition (and its placeholders) and replace any uses of that layout with a replacement layout. |
LayoutDefinition |
getLayoutDefinition(CustomizationContext customizationContext,
LayoutDefinitionId layoutDefinitionId)
Getter for returning a single LayoutDefinition object given a supplied layout
definition identifier. |
LayoutDefinition |
getLayoutDefinitionFromFile(CustomizationContext customizationContext,
String layoutFile,
String webAppName)
Getter for returning a single LayoutDefinition object given a supplied layout
file name and web app name. |
LayoutDefinitionId |
getLayoutDefinitionId(CustomizationContext customizationContext,
String markupName,
String webAppName)
Getter for returning a single LayoutDefinitionId object given a supplied layout
markup name. |
LayoutDefinition[] |
getLayoutDefinitions(CustomizationContext customizationContext,
String webapp)
Getter for returning a list of all LayoutDefinitions scoped to the supplied webapp. |
PlaceholderDefinitionId |
getPlaceholderDefinitionId(CustomizationContext customizationContext,
LayoutDefinitionId layoutDefinitionId,
int layoutLocation)
Getter for returning a single PlaceholderDefinitionId object given a supplied placeholder
markup name. |
void |
updateLayoutDefinition(CustomizationContext customizationContext,
LayoutDefinition layoutDefinition)
Update the layout definition with the new data. |
Method Detail |
public LayoutDefinition[] getLayoutDefinitions(CustomizationContext customizationContext, String webapp) throws RemoteException
Getter for returning a list of all LayoutDefinitions
scoped to the supplied webapp.
customizationContext
- customization information such as prefered locales and desktopInstanceIdwebapp
- the web application these layout definitions are scoped to.
LayoutDefinition
objects if they exist, otherwise, an empty array.
RemoteException
LayoutDefinition
public LayoutDefinition getLayoutDefinition(CustomizationContext customizationContext, LayoutDefinitionId layoutDefinitionId) throws RemoteException
Getter for returning a single LayoutDefinition
object given a supplied layout
definition identifier.
customizationContext
- customization information such as prefered locales and desktopInstanceIdlayoutDefinitionId
- the unique layout definition identifier.
LayoutDefinition
object fully populated and internationalized, otherwise,
null>/code> if the object does not exist.
RemoteException
- See Also:
LayoutDefinition
public LayoutDefinition getLayoutDefinitionFromFile(CustomizationContext customizationContext, String layoutFile, String webAppName) throws RemoteException
Getter for returning a single LayoutDefinition
object given a supplied layout
file name and web app name.
customizationContext
- customization information such as prefered locales and desktopInstanceIdlayoutFile
- the name of the .layout filewebAppName
- the name of the web app as defined in the config.xml
LayoutDefinition
object fully populated and internationalized, otherwise,
null>/code> if the object does not exist.
RemoteException
- See Also:
LayoutDefinition
public LayoutDefinition createLayoutDefinition(CustomizationContext customizationContext, LayoutDefinition layoutDefinition) throws RemoteException, MissingDataException, NotEntitledException
customizationContext
- customization information such as prefered locales and desktopInstanceIdlayoutDefinition
- the layout data and associated placeholders
MissingDataException
- the layoutDefiniiton supplied as an argument is missing some vital data.
NotEntitledException
- the caller is not entitled to create a new layout.
RemoteException
public void updateLayoutDefinition(CustomizationContext customizationContext, LayoutDefinition layoutDefinition) throws RemoteException, ObjectNotFoundException, MissingDataException, NotEntitledException
Update the layout definition with the new data.
customizationContext
- customization information such as prefered locales and desktopInstanceIdlayoutDefinition
- the layout definition containing the new data
ObjectNotFoundException
- if the LocalizationIntersectionId in the LocalizationResource is bogus.
MissingDataException
- if layoutDefinition is missing required data.
RemoteException
NotEntitledException
public void deleteLayoutDefinition(CustomizationContext customizationContext, LayoutDefinitionId layoutDefinitionId) throws RemoteException, ObjectNotFoundException, ObjectInUseException, NotEntitledException
Delete a layout definition and all its associated placeholders..
customizationContext
- customization information such as prefered locales and desktopInstanceIdlayoutDefinitionId
- the id of the layout definition to delete.
ObjectNotFoundException
- if the layoutDefinitionId is bogus
ObjectInUseException
- if page instances are currently using this layout
NotEntitledException
- the caller is not entitled to perform this operation.
RemoteException
deleteLayoutDefinitionWithReplacement(com.bea.netuix.application.manager.CustomizationContext, com.bea.netuix.application.identifier.LayoutDefinitionId, com.bea.netuix.application.identifier.LayoutDefinitionId)
public void deleteLayoutDefinitionWithReplacement(CustomizationContext customizationContext, LayoutDefinitionId deleteLayoutDefinitionId, LayoutDefinitionId replacementLayoutDefinitionId) throws RemoteException, ObjectNotFoundException, NotEntitledException
Delete a layout definition (and its placeholders) and replace any uses of that layout with a replacement layout. This method is useful for deleting a layout that is in use by page instances and not having to delete those page instances.
customizationContext
- customization information such as prefered locales and desktopInstanceIddeleteLayoutDefinitionId
- the id of the layout definition to delete.replacementLayoutDefinitionId
- the id of the replacement layout
ObjectNotFoundException
- if either of the layoutDefinitionIds are bogus
NotEntitledException
- the caller is not entitled to perform this operation.
RemoteException
deleteLayoutDefinition(com.bea.netuix.application.manager.CustomizationContext, com.bea.netuix.application.identifier.LayoutDefinitionId)
public PlaceholderDefinitionId getPlaceholderDefinitionId(CustomizationContext customizationContext, LayoutDefinitionId layoutDefinitionId, int layoutLocation) throws RemoteException
Getter for returning a single PlaceholderDefinitionId
object given a supplied placeholder
markup name.
customizationContext
- customization information such as prefered locales and desktopInstanceId
RemoteException
public LayoutDefinitionId getLayoutDefinitionId(CustomizationContext customizationContext, String markupName, String webAppName) throws RemoteException
Getter for returning a single LayoutDefinitionId
object given a supplied layout
markup name.
customizationContext
- customization information such as prefered locales and desktopInstanceIdmarkupName
- as supplied on the tag.webAppName
- as defined in the config.xml
RemoteException
|
© 2003 BEA Systems, Inc. | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |