Uses of Class
org.jboss.dna.graph.NodeConflictBehavior

Packages that use NodeConflictBehavior
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.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.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.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.
 



Copyright © 2008-2009 JBoss, a division of Red Hat. All Rights Reserved.