Interface NavigationModel
#{navigationContext.defaultNavigationModel}
#{navigationContext.currentNavigationModel}
#{navigationContext.navigationModel['/oracle/webcenter/portalapp/navigations/default-navigation-model']}
- Since:
- 11.1.1.4.0
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final String
Parameter value to use to return a List ofNavigationResource
objectstatic final String
Parameter value to use to return aChildPropertyMenuModel
objectstatic final String
Parameter value to use to return aChildPropertyTreeModel
objectstatic final String
Parameter that defines the initial depth of fetching
EL:#{navigationContext.defaultNavigationModel.treeModel['depth=1']}
static final String
Parameter that defines whether to include the starting node
EL:#{navigationContext.defaultNavigationModel.treeModel['includeStartNode=true']}
static final String
Parameter that defines the type of collection you want back as defined byMODEL_TYPE_*
constants.static final String
Parameter that defines whether to return nodes up to the depth level requested initially
EL:#{navigationContext.defaultNavigationModel.treeModel['prefetchOnly=false']}
static final String
Parameter that defines the path of the starting node
EL:#{navigationContext.defaultNavigationModel.treeModel['startNode=home']}
-
Method Summary
Modifier and TypeMethodDescriptionevalParamExpr
(Map params) Returns a mutable Map of all the NavigationModel attributes
EL:#{navigationContext.defaultNavigationModel.attributes['Description']}
Returns the currently selected NavigationResource
EL:#{navigationContext.defaultNavigationModel.currentSelection}
getDataModel
(Map params) Returns a collection object representing the navigation based on the Map of parameters passed in.Returns a List with default settings for the navigation model
EL:#{navigationContext.defaultNavigationModel.defaultListModel}
org.apache.myfaces.trinidad.model.MenuModel
Returns a MenuModel with default settings for the navigation model
EL:#{navigationContext.defaultNavigationModel.defaultMenuModel}
Returns SiteMap XML based on the default settings.org.apache.myfaces.trinidad.model.TreeModel
Returns a TreeModel with default settings for the navigation model
EL:#{navigationContext.defaultNavigationModel.defaultTreeModel}
Returns the id of the NavigationModel objectReturns the scope of the NavigationModel objectReturns the list of visible pages available in the scope that satisfies the includePageStyle and exludePageStyle condition.Returns an immutable Map of all the NavigationModel default properties
EL:#{navigationContext.defaultNavigationModel.properties['rootNode']}
getProperties
(String propertyNames) Returns an immutable Map of the NavigationModel properties with names specified in the parameter (in a comma-separated format)getResource
(String resourceId) Returns the NavigationResource identified by the resource id.getResources
(PredicateFilter pFilter, String startNode) Returns a flattened List of NavigationResource identified by the startNode path and Filter class.Returns the root node of the NavigationModel
EL:#{navigationContext.defaultNavigationModel.rootNode}
void
Invalidates the cache maintains by the NavigationModel objectvoid
setCurrentSelection
(NavigationResource navResource) Set the NavigationResource as the current selectionvoid
setNewCurrentSelection
(String nodePath) Update the current selection given the node path
-
Field Details
-
PARAM_EL_START_NODE
Parameter that defines the path of the starting node
EL:#{navigationContext.defaultNavigationModel.treeModel['startNode=home']}
This parameter can be used in combination with other parameters. When used in an EL, comma-separate each parameter. For example,
#{navigationContext.defaultNavigationModel.treeModel['startNode=home,includeStartNode=true']}
- See Also:
-
PARAM_EL_INCLUDE_START_NODE
Parameter that defines whether to include the starting node
EL:#{navigationContext.defaultNavigationModel.treeModel['includeStartNode=true']}
If
true
, include the starting node, otherwise start from its children. This parameter can be used in combination with other parameters. When used in an EL, comma-separate each parameter. For example,#{navigationContext.defaultNavigationModel.treeModel['startNode=home,includeStartNode=true']}
- See Also:
-
PARAM_EL_DEPTH
Parameter that defines the initial depth of fetching
EL:#{navigationContext.defaultNavigationModel.treeModel['depth=1']}
depth=0 means to fetch the entire tree. This parameter can be used in combination with other parameters. When used in an EL, comma-separate each parameter. For example,
#{navigationContext.defaultNavigationModel.treeModel['startNode=home,includeStartNode=true']}
- See Also:
-
PARAM_EL_PREFETCH_ONLY
Parameter that defines whether to return nodes up to the depth level requested initially
EL:#{navigationContext.defaultNavigationModel.treeModel['prefetchOnly=false']}
If
true
, deeper level nodes can be returned on demand. Usefalse
if you only want the initial sets of nodes. In which case, it doesn't return deeper nodes later on when requested even when there are deeper nodes This parameter can be used in combination with other parameters. When used in an EL, comma-separate each parameter. For example,#{navigationContext.defaultNavigationModel.treeModel['startNode=home,includeStartNode=true']}
- See Also:
-
PARAM_EL_MODEL_TYPE
Parameter that defines the type of collection you want back as defined byMODEL_TYPE_*
constants. This parameter can be used in combination with other parameters. When used in an EL, comma-separate each parameter. For example,#{navigationContext.defaultNavigationModel.treeModel['startNode=home,includeStartNode=true']}
- See Also:
-
MODEL_TYPE_LIST
Parameter value to use to return a List ofNavigationResource
object- See Also:
-
MODEL_TYPE_TREE
Parameter value to use to return aChildPropertyTreeModel
object- See Also:
-
MODEL_TYPE_MENU
Parameter value to use to return aChildPropertyMenuModel
object- See Also:
-
-
Method Details
-
getMetadataScope
String getMetadataScope()Returns the scope of the NavigationModel object- Returns:
-
getMetadataId
String getMetadataId()Returns the id of the NavigationModel object- Returns:
-
invalidateCache
void invalidateCache()Invalidates the cache maintains by the NavigationModel object -
getResource
Returns the NavigationResource identified by the resource id.- Parameters:
resourceId
- the resource id can be id-driven path or title-driven path- Returns:
- Throws:
ResourceNotFoundException
- if no resource matches the resourceId
-
getRootNode
NavigationResource getRootNode()Returns the root node of the NavigationModel
EL:#{navigationContext.defaultNavigationModel.rootNode}
- Returns:
- root node
-
getAttributes
Returns a mutable Map of all the NavigationModel attributes
EL:#{navigationContext.defaultNavigationModel.attributes['Description']}
The returned Map implements the entire contract for a modifiable map as described in
java.util.Map
. These includes put() (to create/update), get() (to read) and, remove() (to delete).- Returns:
- a mutable Map of all the attributes
-
getProperties
Returns an immutable Map of all the NavigationModel default properties
EL:#{navigationContext.defaultNavigationModel.properties['rootNode']}
- Returns:
- an immutable Map of all the default properties
-
getProperties
Returns an immutable Map of the NavigationModel properties with names specified in the parameter (in a comma-separated format)- Returns:
- an immutable Map of all the properties requested
-
getCurrentSelection
NavigationResource getCurrentSelection()Returns the currently selected NavigationResource
EL:#{navigationContext.defaultNavigationModel.currentSelection}
- Returns:
- the currently selected NavigationResource
-
evalParamExpr
-
getDataModel
Returns a collection object representing the navigation based on the Map of parameters passed in. The parameters are defined by thePARAM_EL_*
constants- Returns:
- a collection object type depending on the PARAM_EL_MODEL_TYPE parameter
-
getDefaultTreeModel
org.apache.myfaces.trinidad.model.TreeModel getDefaultTreeModel()Returns a TreeModel with default settings for the navigation model
EL:#{navigationContext.defaultNavigationModel.defaultTreeModel}
The default settings are: startPath = / includeStartNode = true depth = 0 (return whole depth)
- Returns:
-
getDefaultMenuModel
org.apache.myfaces.trinidad.model.MenuModel getDefaultMenuModel()Returns a MenuModel with default settings for the navigation model
EL:#{navigationContext.defaultNavigationModel.defaultMenuModel}
The default settings are: startPath = / includeStartNode = true depth = 0 (return whole depth)
- Returns:
-
getDefaultListModel
List<NavigationResource> getDefaultListModel()Returns a List with default settings for the navigation model
EL:#{navigationContext.defaultNavigationModel.defaultListModel}
The default settings are: startPath = / includeStartNode = true depth = 0 (return whole depth)
- Returns:
-
getDefaultSiteMap
String getDefaultSiteMap()Returns SiteMap XML based on the default settings. The SiteMap will return a flat list of "navigable" nodes within the navigation model. It won't return entries for items for non-navigable items such as "separators" and "folders".The default settings are: startPath = / includeStartNode = true EL:
#{navigationContext.defaultNavigationModel.defaultSiteMap}
- Returns:
- site map XML
-
setNewCurrentSelection
Update the current selection given the node path- Parameters:
nodePath
- node path to the selected resource
-
getPages
Returns the list of visible pages available in the scope that satisfies the includePageStyle and exludePageStyle condition. The current scope will be considered if the scope is not passed. This EL returns only the visible pages which uses page styles mentioned in the includePageStyle. And it exclude the pages that uses the page styles mentioned in the excludePageStyle. If includePageStyle and excludePageStyle are empty, then all the visible pages will be returned from the scope. EL:#{navigationContext.defaultNavigationModel. pages['scope=
,includePageStyle=<guid1;guid2;guid3>,excludePageStyle=<guid1;guid2>]} scope= - Specify the GUID of the scope from where all the pages has to be listed includePageStyle= - Specify the page styles GUID. Pages that uses these page styles needs to be listed. excludePageStyle= - Specify the page styles GUID. Pages that uses these page styles needs to be excluded from the lists
- Parameters:
params
-- Returns:
-