|
ModeShape Distribution 3.0.0.Beta4 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.modeshape.jcr.JcrNodeTypeManager
@Immutable public class JcrNodeTypeManager
Local implementation of @{link NodeTypeManager}. This class handles translation between Name
s and String
s based
on the namespace registry from the session's execution context in order to support transient namespace remappings. All
NodeType
s returned by this implementation are wrapped with the execution context of the session to allow proper ongoing
handling of names. This implies that reference equality is not a safe test for node type equivalence.
RepositoryNodeTypeManager
Method Summary | |
---|---|
NodeDefinitionTemplate |
createNodeDefinitionTemplate()
Returns an empty PropertyDefinitionTemplate which can then be used to create a property definition and attached to
a NodeTypeTemplate . |
NodeTypeTemplate |
createNodeTypeTemplate()
Returns an empty NodeTypeTemplate which can then be used to define a node type and passed to
registerNodeType(NodeTypeDefinition, boolean) |
NodeTypeTemplate |
createNodeTypeTemplate(NodeTypeDefinition ntd)
Returns a NodeTypeTemplate based on the definition given in ntd . |
PropertyDefinitionTemplate |
createPropertyDefinitionTemplate()
Returns an empty PropertyDefinitionTemplate which can then be used to create a property definition and attached to
a NodeTypeTemplate . |
NodeTypeIterator |
getAllNodeTypes()
|
NodeTypeIterator |
getMixinNodeTypes()
|
org.modeshape.jcr.JcrNodeType |
getNodeType(String nodeTypeName)
|
NodeTypeIterator |
getPrimaryNodeTypes()
|
boolean |
hasNodeType(String nodeTypeName)
Returns true if and only if the node type with the given name exists. |
protected List<NodeTypeDefinition> |
importFromXml(InputSource source)
|
boolean |
isDerivedFrom(String[] testTypeNames,
String primaryTypeName,
String[] mixinNames)
Determine if any of the test type names are equal to or have been derived from the primary type or any of the mixins. |
protected String |
messageFrom(Problems problems)
|
NodeType |
registerNodeType(NodeTypeDefinition template,
boolean allowUpdate)
Registers a new node type or updates an existing node type using the specified definition and returns the resulting NodeType object. |
NodeTypeIterator |
registerNodeTypes(Collection<NodeTypeDefinition> templates,
boolean allowUpdates)
Registers or updates the specified Collection of NodeTypeDefinition objects. |
NodeTypeIterator |
registerNodeTypes(File file,
boolean allowUpdate)
Registers or updates the node type definitions per the Compact Node Definition (CND) file given by the supplied file. |
NodeTypeIterator |
registerNodeTypes(InputStream stream,
boolean allowUpdate)
Registers or updates the node type definitions per the Compact Node Definition (CND) file given by the supplied stream. |
NodeTypeIterator |
registerNodeTypes(Iterable<NodeTypeDefinition> nodeTypes)
Registers the node types from the given JcrNodeTypeSource . |
NodeTypeIterator |
registerNodeTypes(NodeTypeDefinition[] ntds,
boolean allowUpdate)
Registers or updates the specified array of NodeTypeDefinition objects. |
NodeTypeIterator |
registerNodeTypes(URL url,
boolean allowUpdate)
Registers or updates the node type definitions per the Compact Node Definition (CND) file given by the supplied URL. |
void |
unregisterNodeType(String nodeTypeName)
Unregisters the named node type if it is not referenced by other node types as a supertype, a default primary type of a child node (or nodes), or a required primary type of a child node (or nodes). |
void |
unregisterNodeTypes(Collection<String> nodeTypeNames)
Allows the collection of node types to be unregistered if they are not referenced by other node types as supertypes, default primary types of child nodes, or required primary types of child nodes. |
void |
unregisterNodeTypes(String[] names)
Allows the collection of node types to be unregistered if they are not referenced by other node types as supertypes, default primary types of child nodes, or required primary types of child nodes. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
---|
public NodeTypeIterator getAllNodeTypes() throws RepositoryException
getAllNodeTypes
in interface NodeTypeManager
RepositoryException
public NodeTypeIterator getMixinNodeTypes() throws RepositoryException
getMixinNodeTypes
in interface NodeTypeManager
RepositoryException
public org.modeshape.jcr.JcrNodeType getNodeType(String nodeTypeName) throws NoSuchNodeTypeException, RepositoryException
getNodeType
in interface NodeTypeManager
NoSuchNodeTypeException
RepositoryException
public boolean hasNodeType(String nodeTypeName)
This is equivalent to the following code:
try { getNodeType(nodeTypeName); return true; } catch (NoSuchNodeTypeException nsnte) { return false; }However, the implementation is more efficient that the approach listed above and does not rely upon exceptions.
hasNodeType
in interface NodeTypeManager
nodeTypeName
- the name of the node type
RepositoryNodeTypeManager.NodeTypes.hasNodeType(Name)
public NodeTypeIterator getPrimaryNodeTypes() throws RepositoryException
getPrimaryNodeTypes
in interface NodeTypeManager
RepositoryException
public NodeType registerNodeType(NodeTypeDefinition template, boolean allowUpdate) throws InvalidNodeTypeDefinitionException, NodeTypeExistsException, UnsupportedRepositoryOperationException, AccessDeniedException, RepositoryException
NodeType
object.
Typically, the object passed to this method will be a NodeTypeTemplate
(a subclass of NodeTypeDefinition
)
acquired from createNodeTypeTemplate()
and then filled-in with definition information.
registerNodeType
in interface NodeTypeManager
template
- the new node type to registerallowUpdate
- this flag is not used
newly created node type
InvalidNodeTypeDefinitionException
- if the NodeTypeDefinition
is invalid
NodeTypeExistsException
- if allowUpdate
is false and the NodeTypeDefinition
specifies a node type
name that already exists
UnsupportedRepositoryOperationException
- if allowUpdate
is true; ModeShape does not allow updating node
types at this time.
AccessDeniedException
- if the current session does not have the register
type permission
.
RepositoryException
- if another error occurspublic NodeTypeIterator registerNodeTypes(Collection<NodeTypeDefinition> templates, boolean allowUpdates) throws InvalidNodeTypeDefinitionException, NodeTypeExistsException, UnsupportedRepositoryOperationException, AccessDeniedException, RepositoryException
NodeTypeDefinition
objects. This method is used to register or
update a set of node types with mutual dependencies. Returns an iterator over the resulting NodeType
objects.
The effect of the method is "all or nothing"; if an error occurs, no node types are registered or updated.
templates
- the new node types to registerallowUpdates
- this flag is not used
newly created node types
InvalidNodeTypeDefinitionException
- if a NodeTypeDefinition
within the collection is invalid
NodeTypeExistsException
- if allowUpdate
is false and a NodeTypeDefinition
within the collection
specifies a node type name that already exists
UnsupportedRepositoryOperationException
- if allowUpdate
is true; ModeShape does not allow updating node
types at this time.
AccessDeniedException
- if the current session does not have the register
type permission
.
RepositoryException
- if another error occurspublic NodeTypeIterator registerNodeTypes(Iterable<NodeTypeDefinition> nodeTypes) throws InvalidNodeTypeDefinitionException, NodeTypeExistsException, UnsupportedRepositoryOperationException, AccessDeniedException, RepositoryException
JcrNodeTypeSource
. This method is used to register or update a set of node
types with mutual dependencies. Returns an iterator over the resulting NodeType
objects.
The effect of the method is "all or nothing"; if an error occurs, no node types are registered or updated.
nodeTypes
- the iterable object containing the new node types to register
newly created node types
InvalidNodeTypeDefinitionException
- if a NodeTypeDefinition
within the collection is invalid
NodeTypeExistsException
- if allowUpdate
is false and a NodeTypeDefinition
within the collection
specifies a node type name that already exists
UnsupportedRepositoryOperationException
- if allowUpdate
is true; ModeShape does not allow updating node
types at this time.
AccessDeniedException
- if the current session does not have the register
type permission
.
RepositoryException
- if another error occurspublic NodeTypeIterator registerNodeTypes(NodeTypeDefinition[] ntds, boolean allowUpdate) throws InvalidNodeTypeDefinitionException, NodeTypeExistsException, UnsupportedRepositoryOperationException, RepositoryException
NodeTypeDefinition
objects. This method is used to register or update a
set of node types with mutual dependencies. Returns an iterator over the resulting NodeType
objects.
The effect of the method is "all or nothing"; if an error occurs, no node types are registered or updated.
registerNodeTypes
in interface NodeTypeManager
ntds
- the new node types to registerallowUpdate
- must be false
; ModeShape does not allow updating node types at this time
newly created node types
InvalidNodeTypeDefinitionException
- if a NodeTypeDefinition
within the collection is invalid
NodeTypeExistsException
- if allowUpdate
is false and a NodeTypeDefinition
within the collection
specifies a node type name that already exists
UnsupportedRepositoryOperationException
- if allowUpdate
is true; ModeShape does not allow updating node
types at this time.
AccessDeniedException
- if the current session does not have the register
type permission
.
RepositoryException
- if another error occurspublic void unregisterNodeType(String nodeTypeName) throws NoSuchNodeTypeException, InvalidNodeTypeDefinitionException, RepositoryException
unregisterNodeType
in interface NodeTypeManager
nodeTypeName
-
NoSuchNodeTypeException
- if node type name does not correspond to a registered node type
InvalidNodeTypeDefinitionException
- if the node type with the given name cannot be unregistered because it is the
supertype, one of the required primary types, or a default primary type of another node type
AccessDeniedException
- if the current session does not have the register
type permission
.
RepositoryException
- if any other error occurspublic void unregisterNodeTypes(Collection<String> nodeTypeNames) throws NoSuchNodeTypeException, InvalidNodeTypeDefinitionException, RepositoryException
nodeTypeNames
- the names of the node types to be unregistered
NoSuchNodeTypeException
- if any of the node type names do not correspond to a registered node type
InvalidNodeTypeDefinitionException
- if any of the node types with the given names cannot be unregistered because
they are the supertype, one of the required primary types, or a default primary type of a node type that is not
being unregistered.
AccessDeniedException
- if the current session does not have the register
type permission
.
RepositoryException
- if any other error occurspublic void unregisterNodeTypes(String[] names) throws NoSuchNodeTypeException, RepositoryException
unregisterNodeTypes
in interface NodeTypeManager
names
- the names of the node types to be unregistered
NoSuchNodeTypeException
- if any of the node type names do not correspond to a registered node type
InvalidNodeTypeDefinitionException
- if any of the node types with the given names cannot be unregistered because
they are the supertype, one of the required primary types, or a default primary type of a node type that is not
being unregistered.
AccessDeniedException
- if the current session does not have the register
type permission
.
RepositoryException
- if any other error occurspublic NodeTypeTemplate createNodeTypeTemplate() throws RepositoryException
NodeTypeTemplate
which can then be used to define a node type and passed to
registerNodeType(NodeTypeDefinition, boolean)
createNodeTypeTemplate
in interface NodeTypeManager
NodeTypeTemplate
which can then be used to define a node type and passed to
registerNodeType(NodeTypeDefinition, boolean)
.
RepositoryException
- if another error occurspublic NodeTypeTemplate createNodeTypeTemplate(NodeTypeDefinition ntd) throws RepositoryException
NodeTypeTemplate
based on the definition given in ntd
. This template can then be used to define a
node type and passed to registerNodeType(NodeTypeDefinition, boolean)
createNodeTypeTemplate
in interface NodeTypeManager
ntd
- an existing node type definition; null values will be ignored
NodeTypeTemplate
which can then be used to define a node type and passed to
registerNodeType(NodeTypeDefinition, boolean)
.
RepositoryException
- if another error occurspublic NodeDefinitionTemplate createNodeDefinitionTemplate() throws RepositoryException
PropertyDefinitionTemplate
which can then be used to create a property definition and attached to
a NodeTypeTemplate
.
createNodeDefinitionTemplate
in interface NodeTypeManager
PropertyDefinitionTemplate
which can then be used to create a property definition and attached to
a NodeTypeTemplate
.
RepositoryException
- if another error occurspublic PropertyDefinitionTemplate createPropertyDefinitionTemplate() throws RepositoryException
PropertyDefinitionTemplate
which can then be used to create a property definition and attached to
a NodeTypeTemplate
.
createPropertyDefinitionTemplate
in interface NodeTypeManager
PropertyDefinitionTemplate
which can then be used to create a property definition and attached to
a NodeTypeTemplate
.
RepositoryException
- if another error occurspublic boolean isDerivedFrom(String[] testTypeNames, String primaryTypeName, String[] mixinNames) throws RepositoryException
testTypeNames
- the names of the types or mixins being tested against (never null
)primaryTypeName
- the primary type name (never null
)mixinNames
- the mixin names (may be null
)
true
if at least one test type name is equal to or derived from the primary type or one of the mixins
RepositoryException
- if there is an exception obtaining node types
IllegalArgumentException
- if testTypeNames
is null
or empty or if
primaryTypeName
is null
or zero lengthprotected String messageFrom(Problems problems)
protected List<NodeTypeDefinition> importFromXml(InputSource source) throws RepositoryException
RepositoryException
public NodeTypeIterator registerNodeTypes(File file, boolean allowUpdate) throws IOException, RepositoryException
NodeTypeManager
NodeType
objects.
The effect of the method is "all or nothing"; if an error occurs, no node types are registered or updated.
file
- the file containing the node typesallowUpdate
- a boolean stating whether existing node type definitions should be modified/updated
IOException
- if there is a problem reading from the supplied stream
InvalidNodeTypeDefinitionException
- if a NodeTypeDefinition
within the Collection
is invalid or if the
Collection
contains an object of a type other than
NodeTypeDefinition
.
NodeTypeExistsException
- if allowUpdate
is
false
and a NodeTypeDefinition
within the
Collection
specifies a node type name that is already
registered.
UnsupportedRepositoryOperationException
- if this implementation
does not support node type registration.
RepositoryException
- if another error occurs.public NodeTypeIterator registerNodeTypes(InputStream stream, boolean allowUpdate) throws IOException, InvalidNodeTypeDefinitionException, NodeTypeExistsException, UnsupportedRepositoryOperationException, RepositoryException
NodeTypeManager
NodeType
objects.
The effect of the method is "all or nothing"; if an error occurs, no node types are registered or updated.
stream
- the stream containing the node type definitions in CND formatallowUpdate
- a boolean stating whether existing node type definitions should be modified/updated
IOException
- if there is a problem reading from the supplied stream
InvalidNodeTypeDefinitionException
- if a NodeTypeDefinition
within the Collection
is invalid or if the
Collection
contains an object of a type other than
NodeTypeDefinition
.
NodeTypeExistsException
- if allowUpdate
is
false
and a NodeTypeDefinition
within the
Collection
specifies a node type name that is already
registered.
UnsupportedRepositoryOperationException
- if this implementation
does not support node type registration.
RepositoryException
- if another error occurs.public NodeTypeIterator registerNodeTypes(URL url, boolean allowUpdate) throws IOException, RepositoryException
NodeTypeManager
NodeType
objects.
The effect of the method is "all or nothing"; if an error occurs, no node types are registered or updated.
url
- the URL that can be resolved to the file containing the node type definitions in CND formatallowUpdate
- a boolean stating whether existing node type definitions should be modified/updated
IOException
- if there is a problem reading from the supplied stream
InvalidNodeTypeDefinitionException
- if a NodeTypeDefinition
within the Collection
is invalid or if the
Collection
contains an object of a type other than
NodeTypeDefinition
.
NodeTypeExistsException
- if allowUpdate
is
false
and a NodeTypeDefinition
within the
Collection
specifies a node type name that is already
registered.
UnsupportedRepositoryOperationException
- if this implementation
does not support node type registration.
RepositoryException
- if another error occurs.
|
ModeShape Distribution 3.0.0.Beta4 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |