public class ContentFactory extends DefaultAmetysObjectFactory
AmetysObjectFactory
handling DefaultContent
.Modifier and Type | Field and Description |
---|---|
private ContentDAO |
_contentDAO |
private ContentTypeExtensionPoint |
_contentTypeExtensionPoint |
private ModifiableContentHelper |
_modifiableContentHelper |
_ametysFactoryExtensionPoint, _manager, _nodetype, _repository, _resolver, _scheme
Constructor and Description |
---|
ContentFactory() |
Modifier and Type | Method and Description |
---|---|
(package private) AmetysObjectResolver |
_getAOResolver() |
(package private) ContentDAO |
_getContentDAO() |
ContentTypeExtensionPoint |
_getContentTypeExtensionPoint()
Retrieves the content type extension point
|
(package private) ModifiableContentHelper |
_getModifiableContentHelper() |
<A extends AmetysObject> |
createChild(DefaultContent object,
String name,
String type)
Creates a child to the given object.
|
DefaultContent |
getAmetysObject(Node node,
String parentPath)
Creates a
AmetysObject from a persistent JCR node. |
<A extends AmetysObject> |
getChild(DefaultContent object,
String path)
Returns the
AmetysObject at the given subPath,
relative to the given DefaultTraversableAmetysObject . |
<A extends AmetysObject> |
getChildren(DefaultContent object)
Returns all children of the given
DefaultTraversableAmetysObject . |
boolean |
hasChild(DefaultContent object,
String name)
Tests if a given object has a child with a given name.
|
void |
service(ServiceManager smanager) |
getCurrentUser, getWorkspaceNode
configure, getAmetysObjectById, getAmetysObjectById, getNode, getNodetypes, getParent, getScheme, hasAmetysObjectForId
enableLogging, getLogger, setupLogger, setupLogger, setupLogger
private ContentDAO _contentDAO
private ModifiableContentHelper _modifiableContentHelper
private ContentTypeExtensionPoint _contentTypeExtensionPoint
public ContentFactory()
public void service(ServiceManager smanager) throws ServiceException
service
in interface Serviceable
service
in class DefaultAmetysObjectFactory
ServiceException
ContentDAO _getContentDAO()
AmetysObjectResolver _getAOResolver()
ModifiableContentHelper _getModifiableContentHelper()
public ContentTypeExtensionPoint _getContentTypeExtensionPoint()
public DefaultContent getAmetysObject(Node node, String parentPath) throws AmetysRepositoryException
JCRAmetysObjectFactory
AmetysObject
from a persistent JCR node.getAmetysObject
in interface JCRAmetysObjectFactory<SimpleAmetysObject>
getAmetysObject
in class DefaultAmetysObjectFactory
node
- the JCR node to use.parentPath
- the parent Path in the Ametys hierarchy,
may be null
if not known yet.AmetysRepositoryException
- if an error occurs.public <A extends AmetysObject> A getChild(DefaultContent object, String path) throws AmetysRepositoryException, UnknownAmetysObjectException
AmetysObject
at the given subPath,
relative to the given DefaultTraversableAmetysObject
.A
- the actual type of AmetysObject
.object
- the context DefaultTraversableAmetysObject
.path
- the sub path. Cannot be null
, empty or absolute.AmetysObject
at the given subPath,
relative to the given DefaultTraversableAmetysObject
.AmetysRepositoryException
- if an error occurs.UnknownAmetysObjectException
- if no such object exists.public <A extends AmetysObject> AmetysObjectIterable<A> getChildren(DefaultContent object) throws AmetysRepositoryException
DefaultTraversableAmetysObject
.A
- the actual type of AmetysObject
sobject
- a DefaultTraversableAmetysObject
.AmetysRepositoryException
- if an error occurs.public boolean hasChild(DefaultContent object, String name) throws AmetysRepositoryException
object
- the context object.name
- the name to test.true
is the given object has a child with the given name,
false
otherwise.AmetysRepositoryException
- if an error occurs.public <A extends AmetysObject> A createChild(DefaultContent object, String name, String type) throws AmetysRepositoryException
A
- the actual type of AmetysObject
.object
- the parent AmetysObject
.name
- the new object's name.type
- the new object's type.AmetysObject
.AmetysRepositoryException
- if an error occurs.