Package | Description |
---|---|
javax.jcr |
Provides interfaces and classes for the Content Repository for Java Technology.
|
javax.jcr.lock |
Provides interfaces and classes for content repository locking functionality.
|
javax.jcr.query |
Provides interfaces and classes for content repository searching functionality.
|
javax.jcr.util |
Provides utility classes for the content repository API.
|
javax.jcr.version |
Provides interfaces and classes for content repository versioning functionality.
|
Modifier and Type | Method and Description |
---|---|
Node |
Node.addNode(String relPath)
Creates a new node at
relPath . |
Node |
Node.addNode(String relPath,
String primaryNodeTypeName)
Creates a new node at
relPath of the specified node type. |
Node |
Property.getNode()
If this property is of type
REFERENCE
this method returns the node to which this property refers. |
Node |
Node.getNode(String relPath)
Returns the node at
relPath relative to this node. |
Node |
Session.getNodeByUUID(String uuid)
Returns the node specifed by the given UUID.
|
Node |
Item.getParent()
Returns the parent of this
Item . |
Node |
Session.getRootNode()
Returns the root node of the workspace.
|
Node |
NodeIterator.nextNode()
Returns the next
Node in the iteration. |
Modifier and Type | Method and Description |
---|---|
Value |
ValueFactory.createValue(Node value)
|
Property |
Node.setProperty(String name,
Node value)
Sets the specified (
REFERENCE )property
to refer to the specified Node . |
void |
Property.setValue(Node value)
Sets this REFERENCE property to refer to the specified node.
|
void |
ItemVisitor.visit(Node node)
This method is called when the
ItemVisitor is
passed to the accept method of a Node . |
Modifier and Type | Method and Description |
---|---|
Node |
Lock.getNode()
Returns the lock holding node.
|
Modifier and Type | Method and Description |
---|---|
Node |
Query.storeAsNode(String absPath)
Creates a node representing this
Query in content. |
Modifier and Type | Method and Description |
---|---|
Query |
QueryManager.getQuery(Node node)
Retrieves an existing persistent query.
|
Modifier and Type | Method and Description |
---|---|
protected abstract void |
TraversingItemVisitor.entering(Node node,
int level)
Implement this method to add behaviour performed before a
Node is visited. |
protected void |
TraversingItemVisitor.Default.entering(Node node,
int level) |
protected abstract void |
TraversingItemVisitor.leaving(Node node,
int level)
Implement this method to add behaviour performed after a
Node is visited. |
protected void |
TraversingItemVisitor.Default.leaving(Node node,
int level) |
void |
TraversingItemVisitor.visit(Node node)
Called when the Visitor is passed to a
Node . |
Modifier and Type | Interface and Description |
---|---|
interface |
Version
A
Version object wraps an nt:version node. |
interface |
VersionHistory
A
VersionHistory object wraps an nt:versionHistory
node. |
Copyright © 2004–2013 Day Management AG. All rights reserved.