Class DefaultThemeFactory
- java.lang.Object
-
- org.apache.avalon.framework.logger.AbstractLogEnabled
-
- org.ametys.plugins.repository.jcr.SimpleAmetysObjectFactory
-
- org.ametys.plugins.linkdirectory.repository.DefaultThemeFactory
-
- All Implemented Interfaces:
AmetysObjectFactory<SimpleAmetysObject>
,JCRAmetysObjectFactory<SimpleAmetysObject>
,Component
,Configurable
,LogEnabled
,Serviceable
public class DefaultThemeFactory extends SimpleAmetysObjectFactory
Factory which createsTheme
objects, which represent a theme of directory links.
-
-
Field Summary
Fields Modifier and Type Field Description static String
THEME_NODE_TYPE
The theme node type.static String
THEME_ROOT_NODE_TYPE
The theme container node type.-
Fields inherited from class org.ametys.plugins.repository.jcr.SimpleAmetysObjectFactory
_ametysFactoryExtensionPoint, _manager, _nodetype, _repository, _resolver, _scheme
-
-
Constructor Summary
Constructors Constructor Description DefaultThemeFactory()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DefaultTheme
getAmetysObject(Node node, String parentPath)
Creates aAmetysObject
from a persistent JCR node.-
Methods inherited from class org.ametys.plugins.repository.jcr.SimpleAmetysObjectFactory
configure, getAmetysObjectById, getAmetysObjectById, getNode, getNodetypes, getParent, getScheme, getWorkspaceNode, hasAmetysObjectForId, service
-
Methods inherited from class org.apache.avalon.framework.logger.AbstractLogEnabled
enableLogging, getLogger, setupLogger, setupLogger, setupLogger
-
-
-
-
Field Detail
-
THEME_ROOT_NODE_TYPE
public static final String THEME_ROOT_NODE_TYPE
The theme container node type.- See Also:
- Constant Field Values
-
THEME_NODE_TYPE
public static final String THEME_NODE_TYPE
The theme node type.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
DefaultThemeFactory
public DefaultThemeFactory()
-
-
Method Detail
-
getAmetysObject
public DefaultTheme getAmetysObject(Node node, String parentPath) throws AmetysRepositoryException, RepositoryException
Description copied from interface:JCRAmetysObjectFactory
Creates aAmetysObject
from a persistent JCR node.- Specified by:
getAmetysObject
in interfaceJCRAmetysObjectFactory<SimpleAmetysObject>
- Overrides:
getAmetysObject
in classSimpleAmetysObjectFactory
- Parameters:
node
- the JCR node to use.parentPath
- the parent Path in the Ametys hierarchy, may benull
if not known yet.- Returns:
- the object.
- Throws:
AmetysRepositoryException
- if an error occurs.RepositoryException
- if a JCR error occurs.
-
-