public class NodeDelegate extends ItemDelegate
NodeDelegate serve as internal representations of Nodes.
Most methods of this class throw an InvalidItemStateException
exception if the instance is stale. An instance is stale if the underlying
items does not exist anymore.sessionDelegate| Constructor and Description |
|---|
NodeDelegate(SessionDelegate sessionDelegate,
org.apache.jackrabbit.oak.api.Tree tree) |
| Modifier and Type | Method and Description |
|---|---|
NodeDelegate |
addChild(String name,
String typeName)
Add a child node
|
void |
addMixin(String typeName) |
boolean |
canAddMixin(String typeName) |
boolean |
exists()
Determine whether the underlying item exists
|
NodeDelegate |
getChild(String relPath)
Get child node
|
long |
getChildCount(long max)
Get the number of child nodes
|
Iterator<NodeDelegate> |
getChildren()
Returns an iterator for traversing all the children of this node.
|
String |
getIdentifier() |
NodeDelegate |
getLock() |
String |
getLockOwner() |
String |
getName()
Get the name of this item
|
NodeDelegate |
getParent()
Get the parent of this item or
null. |
String |
getPath()
Get the path of this item
|
Iterator<PropertyDelegate> |
getProperties()
Get the properties of the node
|
PropertyDelegate |
getProperty(String relPath)
Get a property.
|
long |
getPropertyCount()
Get the number of properties of the node
|
PropertyDelegate |
getPropertyOrNull(String relPath)
Get a property
|
org.apache.jackrabbit.oak.api.Tree.Status |
getStatus()
Get the status of this item.
|
org.apache.jackrabbit.oak.api.Tree |
getTree() |
boolean |
holdsLock(boolean deep)
Checks whether this node holds a lock.
|
boolean |
isLocked()
Checks whether this node is locked, either directly or through
a deep lock on an ancestor.
|
boolean |
isLockOwner(String user) |
boolean |
isProtected() |
boolean |
isRoot()
Determine whether this is the root node
|
void |
lock(boolean isDeep) |
void |
orderBefore(String source,
String target) |
boolean |
remove()
Remove this node.
|
void |
removeMixin(String typeName) |
void |
setMixins(Set<String> mixinNames) |
void |
setOrderableChildren(boolean enable)
Enables or disabled orderable children on the underlying tree.
|
PropertyDelegate |
setProperty(org.apache.jackrabbit.oak.api.PropertyState propertyState,
boolean exactTypeMatch,
boolean setProtected)
Set a property
|
String |
toString() |
void |
unlock() |
void |
updateMixins(Set<String> addMixinNames,
Set<String> removedOakMixinNames) |
checkAlive, checkUpdate, save, updatepublic NodeDelegate(SessionDelegate sessionDelegate, org.apache.jackrabbit.oak.api.Tree tree)
@Nonnull public String getName()
ItemDelegategetName in class ItemDelegate@Nonnull public String getPath()
ItemDelegategetPath in class ItemDelegate@CheckForNull public NodeDelegate getParent()
ItemDelegatenull.getParent in class ItemDelegatenull for root or if the parent
is not accessible.public boolean exists()
ItemDelegateexists in class ItemDelegatetrue the underlying tree exists, false otherwise.@CheckForNull public org.apache.jackrabbit.oak.api.Tree.Status getStatus()
ItemDelegategetStatus in class ItemDelegateTree.Status of this item or null if not available.@Nonnull public String getIdentifier() throws InvalidItemStateException
InvalidItemStateExceptionpublic boolean isProtected()
throws InvalidItemStateException
isProtected in class ItemDelegateInvalidItemStateExceptionpublic boolean isRoot()
throws InvalidItemStateException
true iff this is the root nodeInvalidItemStateExceptionpublic long getPropertyCount()
throws InvalidItemStateException
InvalidItemStateException@CheckForNull public PropertyDelegate getPropertyOrNull(String relPath) throws RepositoryException
relPath - oak pathrelPath or null if
no such property existsRepositoryException@Nonnull public PropertyDelegate getProperty(String relPath) throws RepositoryException
getPropertyOrNull(String) this
method never returns null. In the case where no property exists
at the given path, the returned property delegate throws an
InvalidItemStateException on access. See See OAK-395.relPath - oak pathrelPath.RepositoryException@Nonnull public Iterator<PropertyDelegate> getProperties() throws InvalidItemStateException
InvalidItemStateExceptionpublic long getChildCount(long max)
throws InvalidItemStateException
If an implementation does know the exact value, it returns it (even if the value is higher than max). If the implementation does not know the exact value, and the child node count is higher than max, it may return Long.MAX_VALUE. The cost of the operation is at most O(max).
max - the maximum valueInvalidItemStateException@CheckForNull public NodeDelegate getChild(String relPath) throws RepositoryException
relPath - oak pathrelPath or null if
no such node existsRepositoryException@Nonnull public Iterator<NodeDelegate> getChildren() throws InvalidItemStateException
InvalidItemStateExceptionpublic void orderBefore(String source, String target) throws ItemNotFoundException, InvalidItemStateException
public boolean canAddMixin(String typeName) throws RepositoryException
RepositoryExceptionpublic void addMixin(String typeName) throws RepositoryException
RepositoryExceptionpublic void removeMixin(String typeName) throws RepositoryException
RepositoryExceptionpublic void setMixins(Set<String> mixinNames) throws RepositoryException
RepositoryExceptionpublic void updateMixins(Set<String> addMixinNames, Set<String> removedOakMixinNames) throws RepositoryException
RepositoryException@Nonnull public PropertyDelegate setProperty(org.apache.jackrabbit.oak.api.PropertyState propertyState, boolean exactTypeMatch, boolean setProtected) throws RepositoryException
RepositoryException@CheckForNull public NodeDelegate addChild(String name, String typeName) throws RepositoryException
name - Oak name of the new child nodetypeName - Oak name of the type of the new child node,
or null if a default type should be usednull if such a node already existsRepositoryExceptionpublic boolean remove()
throws InvalidItemStateException
remove in class ItemDelegatetrue if the node was removed; false otherwise.InvalidItemStateExceptionpublic void setOrderableChildren(boolean enable)
throws InvalidItemStateException
enable - whether to enable or disable orderable children.InvalidItemStateExceptionpublic boolean isLocked()
@CheckForNull public NodeDelegate getLock()
public boolean holdsLock(boolean deep)
deep - if true, only check for deep lockspublic String getLockOwner()
public boolean isLockOwner(String user)
public void lock(boolean isDeep)
throws RepositoryException
RepositoryExceptionpublic void unlock()
throws RepositoryException
RepositoryException@Nonnull public org.apache.jackrabbit.oak.api.Tree getTree() throws InvalidItemStateException
InvalidItemStateExceptionCopyright © 2012–2018 The Apache Software Foundation. All rights reserved.