|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use NodeConflictBehavior | |
---|---|
org.jboss.dna.connector.filesystem | The classes that make up the connector that accesses the files and directories on a local file system and exposes them as content in a repository. |
org.jboss.dna.graph | The JBoss DNA Graph API defines the types that allow you to work with content organized as a graph. |
org.jboss.dna.graph.connector.path | The PathRepository class and its supporting classes provide a default read-only implementation of the connector
classes for connectors that only support path-based access to a standard
representation of a node . |
org.jboss.dna.graph.request | Sometimes its useful to work with a graph using objects that represent individual commands on the graph. |
Uses of NodeConflictBehavior in org.jboss.dna.connector.filesystem |
---|
Methods in org.jboss.dna.connector.filesystem with parameters of type NodeConflictBehavior | |
---|---|
PathNode |
FileSystemRepository.FileSystemWorkspace.createNode(ExecutionContext context,
PathNode parentNode,
Name name,
Map<Name,Property> properties,
NodeConflictBehavior conflictBehavior)
|
Uses of NodeConflictBehavior in org.jboss.dna.graph |
---|
Methods in org.jboss.dna.graph that return NodeConflictBehavior | |
---|---|
static NodeConflictBehavior |
NodeConflictBehavior.valueOf(String name)
Returns the enum constant of this type with the specified name. |
static NodeConflictBehavior[] |
NodeConflictBehavior.values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Uses of NodeConflictBehavior in org.jboss.dna.graph.connector.path |
---|
Methods in org.jboss.dna.graph.connector.path with parameters of type NodeConflictBehavior | |
---|---|
PathNode |
WritablePathWorkspace.createNode(ExecutionContext context,
PathNode parentNode,
Name name,
Map<Name,Property> properties,
NodeConflictBehavior conflictBehavior)
Create a new node with the supplied name, as a child of the supplied parent. |
PathNode |
WritablePathWorkspace.createNode(ExecutionContext context,
String pathToNewNode,
Map<Name,Property> properties,
NodeConflictBehavior conflictBehavior)
Create a node at the supplied path. |
PathNode |
AbstractWritablePathWorkspace.createNode(ExecutionContext context,
String pathToNewNode,
Map<Name,Property> properties,
NodeConflictBehavior conflictBehavior)
|
Uses of NodeConflictBehavior in org.jboss.dna.graph.request |
---|
Fields in org.jboss.dna.graph.request declared as NodeConflictBehavior | |
---|---|
static NodeConflictBehavior |
MoveBranchRequest.DEFAULT_CONFLICT_BEHAVIOR
|
static NodeConflictBehavior |
CreateNodeRequest.DEFAULT_CONFLICT_BEHAVIOR
|
static NodeConflictBehavior |
CopyBranchRequest.DEFAULT_NODE_CONFLICT_BEHAVIOR
|
Methods in org.jboss.dna.graph.request that return NodeConflictBehavior | |
---|---|
NodeConflictBehavior |
MoveBranchRequest.conflictBehavior()
Get the expected behavior when copying the branch and the destination already has a node with the same
name. |
NodeConflictBehavior |
CreateNodeRequest.conflictBehavior()
Get the expected behavior when copying the branch and the destination already has a node with the same
name. |
NodeConflictBehavior |
CopyBranchRequest.nodeConflictBehavior()
Get the expected behavior when copying the branch and the destination already has a node with the same
name. |
Methods in org.jboss.dna.graph.request with parameters of type NodeConflictBehavior | |
---|---|
CopyBranchRequest |
RequestBuilder.copyBranch(Location from,
String fromWorkspace,
Location into,
String intoWorkspace,
Name nameForCopy,
NodeConflictBehavior conflictBehavior)
Add a request to copy a branch to another. |
BatchRequestBuilder |
BatchRequestBuilder.copyBranch(Location from,
String fromWorkspace,
Location into,
String intoWorkspace,
Name nameForCopy,
NodeConflictBehavior conflictBehavior)
Add a request to copy a branch to another. |
CreateNodeRequest |
RequestBuilder.createNode(Location parentLocation,
String workspaceName,
Name childName,
Iterator<Property> properties,
NodeConflictBehavior conflictBehavior)
Add a request to create a node with the given properties under the supplied location. |
BatchRequestBuilder |
BatchRequestBuilder.createNode(Location parentLocation,
String workspaceName,
Name childName,
Iterator<Property> properties,
NodeConflictBehavior conflictBehavior)
Add a request to create a node with the given properties under the supplied location. |
CreateNodeRequest |
RequestBuilder.createNode(Location parentLocation,
String workspaceName,
Name childName,
Property[] properties,
NodeConflictBehavior conflictBehavior)
Add a request to create a node with the given properties under the supplied location. |
BatchRequestBuilder |
BatchRequestBuilder.createNode(Location parentLocation,
String workspaceName,
Name childName,
Property[] properties,
NodeConflictBehavior conflictBehavior)
Add a request to create a node with the given properties under the supplied location. |
MoveBranchRequest |
RequestBuilder.moveBranch(Location from,
Location into,
String workspaceName,
Name newNameForNode,
NodeConflictBehavior conflictBehavior)
Create a request to move a branch from one location into another. |
MoveBranchRequest |
RequestBuilder.moveBranch(Location from,
Location into,
String workspaceName,
NodeConflictBehavior conflictBehavior)
Create a request to move a branch from one location into another. |
BatchRequestBuilder |
BatchRequestBuilder.moveBranch(Location from,
Location into,
String workspaceName,
NodeConflictBehavior conflictBehavior)
Create a request to move a branch from one location into another. |
Constructors in org.jboss.dna.graph.request with parameters of type NodeConflictBehavior | |
---|---|
CopyBranchRequest(Location from,
String fromWorkspace,
Location into,
String intoWorkspace,
Name nameForCopy,
NodeConflictBehavior nodeConflictBehavior)
Create a request to copy a branch to another. |
|
CreateNodeRequest(Location parentLocation,
String workspaceName,
Name childName,
NodeConflictBehavior conflictBehavior,
Iterable<Property> properties)
Create a request to create a node with the given properties under the supplied location. |
|
CreateNodeRequest(Location parentLocation,
String workspaceName,
Name childName,
NodeConflictBehavior conflictBehavior,
Iterator<Property> properties)
Create a request to create a node with the given properties under the supplied location. |
|
CreateNodeRequest(Location parentLocation,
String workspaceName,
Name childName,
NodeConflictBehavior conflictBehavior,
Property... properties)
Create a request to create a node with the given properties under the supplied location. |
|
MoveBranchRequest(Location from,
Location into,
Location before,
String workspaceName,
Name newNameForMovedNode,
NodeConflictBehavior conflictBehavior)
Create a request to move a branch from one location into another. |
|
MoveBranchRequest(Location from,
Location into,
String workspaceName,
NodeConflictBehavior conflictBehavior)
Create a request to move a branch from one location into another. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |