Class QueryFactory
- java.lang.Object
-
- org.apache.avalon.framework.logger.AbstractLogEnabled
-
- org.ametys.plugins.repository.jcr.SimpleAmetysObjectFactory
-
- org.ametys.plugins.repository.jcr.DefaultAmetysObjectFactory
-
- org.ametys.plugins.queriesdirectory.QueryFactory
-
- All Implemented Interfaces:
AmetysObjectFactory<SimpleAmetysObject>
,JCRAmetysObjectFactory<SimpleAmetysObject>
,Component
,Configurable
,LogEnabled
,Serviceable
public class QueryFactory extends DefaultAmetysObjectFactory
AmetysObjectFactory
for handlingQuery
s.
-
-
Field Summary
Fields Modifier and Type Field Description protected ContentTypeExtensionPoint
_cTypeEP
Content type extension pointprotected GroupManager
_groupManager
Group managerprotected Model
_model
The Query modelprotected QueryDAO
_queryDAO
The Query DAOstatic String
QUERY_NODETYPE
JCR nodetype for query-
Fields inherited from class org.ametys.plugins.repository.jcr.SimpleAmetysObjectFactory
_ametysFactoryExtensionPoint, _manager, _nodetype, _repository, _resolver, _scheme
-
-
Constructor Summary
Constructors Constructor Description QueryFactory()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected Model
_createQueryModel()
Creates the query modelQuery
getAmetysObject(Node node, String parentPath)
Creates aAmetysObject
from a persistent JCR node.Model
getModel()
Retrieves the query modelvoid
service(ServiceManager manager)
-
Methods inherited from class org.ametys.plugins.repository.jcr.DefaultAmetysObjectFactory
getCurrentUser, getUnversionedDataTypeExtensionPoint, getWorkspaceNode
-
Methods inherited from class org.ametys.plugins.repository.jcr.SimpleAmetysObjectFactory
configure, getAmetysObjectById, getAmetysObjectById, getNode, getNodetypes, getParent, getScheme, hasAmetysObjectForId
-
Methods inherited from class org.apache.avalon.framework.logger.AbstractLogEnabled
enableLogging, getLogger, setupLogger, setupLogger, setupLogger
-
-
-
-
Field Detail
-
QUERY_NODETYPE
public static final String QUERY_NODETYPE
JCR nodetype for query- See Also:
- Constant Field Values
-
_groupManager
protected GroupManager _groupManager
Group manager
-
_cTypeEP
protected ContentTypeExtensionPoint _cTypeEP
Content type extension point
-
-
Constructor Detail
-
QueryFactory
public QueryFactory()
-
-
Method Detail
-
service
public void service(ServiceManager manager) throws ServiceException
- Specified by:
service
in interfaceServiceable
- Overrides:
service
in classDefaultAmetysObjectFactory
- Throws:
ServiceException
-
getAmetysObject
public Query getAmetysObject(Node node, String parentPath) throws AmetysRepositoryException
Description copied from interface:JCRAmetysObjectFactory
Creates aAmetysObject
from a persistent JCR node.- Specified by:
getAmetysObject
in interfaceJCRAmetysObjectFactory<SimpleAmetysObject>
- Overrides:
getAmetysObject
in classDefaultAmetysObjectFactory
- 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.
-
_createQueryModel
protected Model _createQueryModel() throws AmetysRepositoryException
Creates the query model- Returns:
- the created model
- Throws:
AmetysRepositoryException
- if an error occurs.
-
-