Uses of Class
org.apache.jackrabbit.core.state.ChildNodeEntry
-
Packages that use ChildNodeEntry Package Description org.apache.jackrabbit.core Contains the core classes that provide the implementation of the JCR API.org.apache.jackrabbit.core.query org.apache.jackrabbit.core.state org.apache.jackrabbit.core.version The versioning framework in jackrabbit consists of 3 layers. -
-
Uses of ChildNodeEntry in org.apache.jackrabbit.core
Methods in org.apache.jackrabbit.core that return ChildNodeEntry Modifier and Type Method Description protected ChildNodeEntry
HierarchyManagerImpl. getChildNodeEntry(NodeState parent, NodeId id)
Returns theChildNodeEntry
ofparent
with the specifieduuid
ornull
if there's no such entry.protected ChildNodeEntry
HierarchyManagerImpl. getChildNodeEntry(NodeState parent, Name name, int index)
Returns theChildNodeEntry
ofparent
with the specifiedname
andindex
ornull
if there's no such entry.protected ChildNodeEntry
ZombieHierarchyManager. getChildNodeEntry(NodeState parent, NodeId id)
Returns theChildNodeEntry
ofparent
with the specifieduuid
ornull
if there's no such entry.protected ChildNodeEntry
ZombieHierarchyManager. getChildNodeEntry(NodeState parent, Name name, int index)
Returns theChildNodeEntry
ofparent
with the specifiedname
andindex
ornull
if there's no such entry. -
Uses of ChildNodeEntry in org.apache.jackrabbit.core.query
Methods in org.apache.jackrabbit.core.query with parameters of type ChildNodeEntry Modifier and Type Method Description abstract void
OnWorkspaceInconsistency. handleMissingChildNode(NoSuchItemStateException exception, QueryHandler handler, Path path, NodeState node, ChildNodeEntry child)
Handle a missing child node state.void
OnWorkspaceInconsistency. logError(ItemStateException exception, QueryHandler handler, Path path, NodeState node, ChildNodeEntry child)
Logs a generic workspace inconsistency error. -
Uses of ChildNodeEntry in org.apache.jackrabbit.core.state
Methods in org.apache.jackrabbit.core.state that return ChildNodeEntry Modifier and Type Method Description ChildNodeEntry
NodeState. addChildNodeEntry(Name nodeName, NodeId id)
Adds a newChildNodeEntry
.ChildNodeEntry
NodeState. getChildNodeEntry(NodeId id)
Returns theChildNodeEntry
with the specifiedNodeId
ornull
if there's no matching entry.ChildNodeEntry
NodeState. getChildNodeEntry(Name nodeName, int index)
Returns theChildNodeEntry
with the specified name and index ornull
if there's no matching entry.Methods in org.apache.jackrabbit.core.state that return types with arguments of type ChildNodeEntry Modifier and Type Method Description List<ChildNodeEntry>
NodeState. getAddedChildNodeEntries()
Returns a list of child node entries that do not exist in the overlayed node state but have been added to this node state.List<ChildNodeEntry>
NodeState. getChildNodeEntries()
Returns a list ofChildNodeEntry
objects denoting the child nodes of this node.List<ChildNodeEntry>
NodeState. getChildNodeEntries(Name nodeName)
Returns a list ofChildNodeEntry
s with the specified name.List<ChildNodeEntry>
NodeState. getRemovedChildNodeEntries()
Returns a list of child node entries, that exist in the overlayed node state but have been removed from this node state.List<ChildNodeEntry>
NodeState. getRenamedChildNodeEntries()
Returns a list of child node entries that exist both in this node state and in the overlayed node state but have been renamed.List<ChildNodeEntry>
NodeState. getReorderedChildNodeEntries()
Returns a list of child node entries that exist both in this node state and in the overlayed node state but have been reordered.Methods in org.apache.jackrabbit.core.state with parameters of type ChildNodeEntry Modifier and Type Method Description protected void
NodeState. notifyNodeAdded(ChildNodeEntry added)
Notify the listeners that a child node entry has been addedprotected void
NodeState. notifyNodeRemoved(ChildNodeEntry removed)
Notify the listeners that a child node entry has been removedMethod parameters in org.apache.jackrabbit.core.state with type arguments of type ChildNodeEntry Modifier and Type Method Description void
NodeState. setChildNodeEntries(List<ChildNodeEntry> nodeEntries)
Sets the list ofChildNodeEntry
objects denoting the child nodes of this node. -
Uses of ChildNodeEntry in org.apache.jackrabbit.core.version
Methods in org.apache.jackrabbit.core.version that return types with arguments of type ChildNodeEntry Modifier and Type Method Description List<ChildNodeEntry>
InternalFrozenNode. getFrozenChildNodes()
Returns the list of frozen child nodesMethods in org.apache.jackrabbit.core.version with parameters of type ChildNodeEntry Modifier and Type Method Description boolean
NodeStateEx. removeNode(ChildNodeEntry entry)
removes the child node with the given child node entry
-