|
Oracle Fusion Middleware Java API for Oracle WebLogic Portal 10g Release 3 (10.3.2) E14255-01 |
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface ILookAndFeelDefinitionManager
This is the primary interface for performing persistent store operations on LookAndFeelDefinitions
. 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 preferred 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 | |
---|---|
LookAndFeelDefinition |
createLookAndFeelDefinition(CustomizationContext customizationContext, LookAndFeelDefinition lookAndFeelDefinition) Creates a new LookAndFeelView Definition. |
void |
deleteLookAndFeelDefinition(CustomizationContext customizationContext, LookAndFeelDefinitionId lookAndFeelDefinitionId) Delete a lookAndFeel definition. |
void |
deleteLookAndFeelDefinitionWithReplacement(CustomizationContext customizationContext, LookAndFeelDefinitionId deleteLookAndFeelDefinitionId, LookAndFeelDefinitionId replacementLookAndFeelDefinitionId) Delete a lookAndFeel definition (and its skins, skeletons and themes) and replace any uses of that lookAndFeel with a replacement lookAndFeel. |
LookAndFeelDefinition |
getLookAndFeelDefinition(CustomizationContext customizationContext, LookAndFeelDefinitionId lookAndFeelDefinitionId) Getter for returning a single LookAndFeelDefinition object given a supplied lookAndFeel definition identifier. |
LookAndFeelDefinition |
getLookAndFeelDefinitionFromFile(CustomizationContext customizationContext, String lookAndFeelFile, String webAppName) Getter for returning a single LookAndFeelDefinition object given a supplied lookAndFeel file name. |
LookAndFeelDefinitionId |
getLookAndFeelDefinitionId(CustomizationContext customizationContext, String markupName, String webAppName) Getter for returning a single LookAndFeelDefinitionId object given a supplied lookAndFeel markup name and webapp. |
LookAndFeelDefinition[] |
getLookAndFeelDefinitions(CustomizationContext customizationContext, String webapp) Getter for returning a list of all LookAndFeelDefinitions scoped to the supplied webapp. |
LookAndFeelDefinition[] |
getLookAndFeelDefinitions(CustomizationContext customizationContext, String webapp, LookAndFeelDefinitionId firstLookAndFeelDefinitionId, int limit) Returns LookAndFeelDefinition s in definitionId order (create order), starting with the supplied definitionId and limiting the result set to size limit . |
SortableFilterablePagedResult<LookAndFeelDefinition> |
getLookAndFeelDefinitions(CustomizationContext context, WebAppSearchCriteria criteria, int pageSize) Get all the look and feel definitions as a paged object. |
LookAndFeelView |
getLookAndFeelView(CustomizationContext customizationContext, LookAndFeelDefinitionId lookAndFeelDefinitionId) Getter for returning an immutable deep LookAndFeelView. |
SortableFilterablePagedResult<LocalizationResourceView> |
getVisibleLaFLocalizationResources(CustomizationContext customizationContext, WebAppSearchCriteria criteria, int pageSize) Retrieve the LocalizationResourceViews for all visible look-and-feels for a given locale and webapp. |
void |
updateLookAndFeelDefinition(CustomizationContext customizationContext, LookAndFeelDefinition lookAndFeelDefinition) Update the lookAndFeel definition with the new data. |
Method Detail |
---|
LookAndFeelView getLookAndFeelView(CustomizationContext customizationContext, LookAndFeelDefinitionId lookAndFeelDefinitionId) throws RemoteException
Getter for returning an immutable deep LookAndFeelView. The LookAndFeelView
object, unlike the LookAndFeelDefinition
or the LookAndFeelInstance
objects contains a full set of references to all child pages, lookAndFeels and so on. The LookAndFeelView
object, however is immutable.
customizationContext
- customization information such as preferred locales and desktopInstanceId returned.lookAndFeelDefinitionId
- the unique lookAndFeelDefinitionId.RemoteException
LookAndFeelDefinition[] getLookAndFeelDefinitions(CustomizationContext customizationContext, String webapp) throws RemoteException
Getter for returning a list of all LookAndFeelDefinitions
scoped to the supplied webapp.
customizationContext
- customization information such as preferred locales and desktopInstanceId returned.webapp
- the web application these lookAndFeel definitions are scoped to.LookAndFeelDefinition
objects if they exist, otherwise, an empty array.RemoteException
LookAndFeelDefinition
LookAndFeelDefinition[] getLookAndFeelDefinitions(CustomizationContext customizationContext, String webapp, LookAndFeelDefinitionId firstLookAndFeelDefinitionId, int limit) throws RemoteException
Returns LookAndFeelDefinition
s in definitionId
order (create order), starting with the supplied definitionId and limiting the result set to size limit
. If fewer LookAndFeelDefinition
s exist than limit
, then a smaller result set will be returned. If no definitions are found an empty array is returned. To start at the beginning of the list specify null as the lookAndFeelDefinitionId
. To retrieve from the end of the list and back specify null as the lookAndFeelDefinitionId
and a negative limit
. To retrieve all the lookAndFeelDefinitions in the database supply a limit of 0.
The implmentation has to ensure that repeated calls to this method return LookAndFeelDefinition
s in a consistent order.
customizationContext
- customization information such as preferred locales.webapp
- the web application these lookAndFeel definitions are scoped to.firstLookAndFeelDefinitionId
- optional parameter to indicate where the list should start.limit
- the maximum result set size. Note the limit may be negative indicating a reverse sort order. To retrieve all the records specify a limit of zero. Note: some elements may be pruned because of entitlements.LookAndFeelDefinition
s no greater than limit
in size.RemoteException
LookAndFeelDefinition getLookAndFeelDefinition(CustomizationContext customizationContext, LookAndFeelDefinitionId lookAndFeelDefinitionId) throws RemoteException
Getter for returning a single LookAndFeelDefinition
object given a supplied lookAndFeel definition identifier.
customizationContext
- customization information such as preferred locales and desktopInstanceId returned.lookAndFeelDefinitionId
- the unique lookAndFeel definition identifier.LookAndFeelDefinition
object fully populated and internationalized, otherwise, null>/code> if the object does not exist.
Throws
RemoteException
LookAndFeelDefinition
LookAndFeelDefinition getLookAndFeelDefinitionFromFile(CustomizationContext customizationContext, String lookAndFeelFile, String webAppName) throws RemoteException
Getter for returning a single LookAndFeelDefinition
object given a supplied lookAndFeel file name.
customizationContext
- customization information such as preferred locales and desktopInstanceId returned.lookAndFeelFile
- the unique lookAndFeel definition identifier.LookAndFeelDefinition
object fully populated and internationalized, otherwise, null>/code> if the object does not exist.
Throws
RemoteException
LookAndFeelDefinition
LookAndFeelDefinition createLookAndFeelDefinition(CustomizationContext customizationContext, LookAndFeelDefinition lookAndFeelDefinition) throws RemoteException, MissingDataException, NotEntitledException
Creates a new LookAndFeelView Definition. While look and feels can be created by this method they should be created via a .laf file. The .laf file may be located anywhere in the webapp directory and immediately gets picked up by the system.
customizationContext
- customization information such as preferred locales and http request.lookAndFeelDefinition
- the lookAndFeel data and associated placeholdersMissingDataException
- the lookAndFeelDefinition supplied as an argument is missing some vital data.NotEntitledException
- the caller is not entitled to create a new lookAndFeel.RemoteException
void updateLookAndFeelDefinition(CustomizationContext customizationContext, LookAndFeelDefinition lookAndFeelDefinition) throws RemoteException, ObjectNotFoundException, NotEntitledException, MissingDataException
Update the lookAndFeel definition with the new data.
customizationContext
- customization information such as preferred locales and desktopInstanceId returned.lookAndFeelDefinition
- the lookAndFeeldefinition containing the new dataObjectNotFoundException
- if the LocalizationIntersectionId in the LocalizationDefnition is bogus.MissingDataException
- if the LookAndFeelDefinition or any of the ThemeDefinitions are missing non nullable data.RemoteException
NotEntitledException
void deleteLookAndFeelDefinition(CustomizationContext customizationContext, LookAndFeelDefinitionId lookAndFeelDefinitionId) throws RemoteException, ObjectNotFoundException, ObjectInUseException, NotEntitledException
Delete a lookAndFeel definition. Note if the .laf file still exist the look and feel will get recreated. This method is for deleting a look and feel after the .laf file has been deleted.
customizationContext
- customization information such as preferred locales and desktopInstanceId returned.lookAndFeelDefinitionId
- the id of the lookAndFeel definition to delete.ObjectNotFoundException
- if the lookAndFeelDefinitionId is bogusObjectInUseException
- if page instances are currently using this lookAndFeelNotEntitledException
- the caller is not entitled to perform this operation.RemoteException
deleteLookAndFeelDefinitionWithReplacement(com.bea.netuix.application.manager.CustomizationContext, com.bea.netuix.application.identifier.LookAndFeelDefinitionId, com.bea.netuix.application.identifier.LookAndFeelDefinitionId)
void deleteLookAndFeelDefinitionWithReplacement(CustomizationContext customizationContext, LookAndFeelDefinitionId deleteLookAndFeelDefinitionId, LookAndFeelDefinitionId replacementLookAndFeelDefinitionId) throws RemoteException, ObjectNotFoundException, NotEntitledException
Delete a lookAndFeel definition (and its skins, skeletons and themes) and replace any uses of that lookAndFeel with a replacement lookAndFeel. This method is useful for deleting a lookAndFeel that is in use by desktop instances without having to delete those dektopinstances instances. Note if the .laf file still exist the look and feel will get recreated. This method is for deleting a look and feel after the .laf file has been deleted.
customizationContext
- customization information such as preferred locales and request.deleteLookAndFeelDefinitionId
- the id of the lookAndFeel definition to delete.replacementLookAndFeelDefinitionId
- the id of the replacement lookAndFeelObjectNotFoundException
- if either of the lookAndFeelDefinitionIds are bogusNotEntitledException
- the caller is not entitled to perform this operation.RemoteException
deleteLookAndFeelDefinition(com.bea.netuix.application.manager.CustomizationContext, com.bea.netuix.application.identifier.LookAndFeelDefinitionId)
LookAndFeelDefinitionId getLookAndFeelDefinitionId(CustomizationContext customizationContext, String markupName, String webAppName) throws RemoteException
Getter for returning a single LookAndFeelDefinitionId
object given a supplied lookAndFeel markup name and webapp.
customizationContext
- customization information such as preferred locales and desktopInstanceId returned.markupName
- the markup name attribute supplied on the tag in the .laf filewebAppName
- as defined in the config.xmlRemoteException
SortableFilterablePagedResult<LocalizationResourceView> getVisibleLaFLocalizationResources(CustomizationContext customizationContext, WebAppSearchCriteria criteria, int pageSize) throws RemoteException
customizationContext
- - a customization context with a request and locale defined. Only the first locale is used.criteria
- - search criteria specifying the webapp to search underpageSize
- - number of results to retrieve per pageRemoteException
SortableFilterablePagedResult<LookAndFeelDefinition> getLookAndFeelDefinitions(CustomizationContext context, WebAppSearchCriteria criteria, int pageSize) throws RemoteException
context
- customization information such as preferred locales and http request.criteria
- used to specify the webapppageSize
- the number of item per page in the result.RemoteException
|
Oracle Fusion Middleware Java API for Oracle WebLogic Portal 10g Release 3 (10.3.2) E14255-01 |
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Copyright © 2010, Oracle. All rights reserved.