Package | Description |
---|---|
javax.jcr |
Provides interfaces and classes for the Content Repository for Java Technology.
|
Modifier and Type | Method and Description |
---|---|
void |
Workspace.clone(String srcWorkspace,
String srcAbsPath,
String destAbsPath,
boolean removeExisting)
Clones the subtree at the node
srcAbsPath in srcWorkspace to the new location at
destAbsPath in this workspace. |
void |
Workspace.copy(String srcWorkspace,
String srcAbsPath,
String destAbsPath)
This method copies the subtree at
srcAbsPath in srcWorkspace
to destAbsPath in this workspace. |
String |
Node.getCorrespondingNodePath(String workspaceName)
Returns the absolute path of the node in the specified workspace that
corresponds to
this node. |
Session |
Repository.login(Credentials credentials,
String workspaceName)
Authenticates the user using the supplied
credentials . |
Session |
Repository.login(String workspaceName)
Equivalent to
login(null, workspaceName) . |
NodeIterator |
Node.merge(String srcWorkspace,
boolean bestEffort)
This method can be thought of as a version-sensitive update (see 7.1.7
Updating and Cloning Nodes across Workspaces in the specification).
|
void |
Node.update(String srcWorkspaceName)
If this node does have a corresponding node in the workspace
srcWorkspaceName ,
then this replaces this node and its subtree with a clone of the corresponding node and its
subtree. |
Copyright © 2004-2013 Day Management AG. All Rights Reserved.