org.jboss.dna.graph
Interface Graph.Into<Next>

Type Parameters:
Next - The interface that is to be returned when this request is completed
All Known Subinterfaces:
Graph.Copy<Next>, Graph.Move<Next>
Enclosing class:
Graph

public static interface Graph.Into<Next>

A component that defines the location into which a node should be copied or moved.

Author:
Randall Hauch

Method Summary
 Next into(Location to)
          Finish the request by specifying the new location into which the node should be copied/moved.
 Next into(Path to)
          Finish the request by specifying the new location into which the node should be copied/moved.
 Next into(Property idProperty)
          Finish the request by specifying the new location into which the node should be copied/moved.
 Next into(Property firstIdProperty, Property... additionalIdProperties)
          Finish the request by specifying the new location into which the node should be copied/moved.
 Next into(String toPath)
          Finish the request by specifying the new location into which the node should be copied/moved.
 Next into(UUID to)
          Finish the request by specifying the new location into which the node should be copied/moved.
 

Method Detail

into

Next into(Location to)
Finish the request by specifying the new location into which the node should be copied/moved.

Parameters:
to - the location of the new parent
Returns:
the interface for additional requests or actions

into

Next into(String toPath)
Finish the request by specifying the new location into which the node should be copied/moved.

Parameters:
toPath - the path of the new parent
Returns:
the interface for additional requests or actions

into

Next into(Path to)
Finish the request by specifying the new location into which the node should be copied/moved.

Parameters:
to - the path of the new parent
Returns:
the interface for additional requests or actions

into

Next into(UUID to)
Finish the request by specifying the new location into which the node should be copied/moved.

Parameters:
to - the UUID of the new parent
Returns:
the interface for additional requests or actions

into

Next into(Property idProperty)
Finish the request by specifying the new location into which the node should be copied/moved.

Parameters:
idProperty - the property that uniquely identifies the new parent
Returns:
the interface for additional requests or actions

into

Next into(Property firstIdProperty,
          Property... additionalIdProperties)
Finish the request by specifying the new location into which the node should be copied/moved.

Parameters:
firstIdProperty - the first property that, with the additionalIdProperties, uniquely identifies the new parent
additionalIdProperties - the additional properties that, with the additionalIdProperties, uniquely identifies the new parent
Returns:
the interface for additional requests or actions


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