Uses of Interface
org.modeshape.graph.connector.base.PathWorkspace.ChangeCommand

Packages that use PathWorkspace.ChangeCommand
org.modeshape.connector.svn The classes that make up the connector that accesses content from an SVN repository. 
org.modeshape.graph.connector.base This package defines a series of classes that can serve as base classes for a connector implementation. 
 

Uses of PathWorkspace.ChangeCommand in org.modeshape.connector.svn
 

Classes in org.modeshape.connector.svn that implement PathWorkspace.ChangeCommand
protected  class SvnWorkspace.SvnCommand
           
protected  class SvnWorkspace.SvnCompositeCommand
           
protected  class SvnWorkspace.SvnPutContentCommand
           
protected  class SvnWorkspace.SvnPutFileCommand
           
protected  class SvnWorkspace.SvnPutFolderCommand
           
protected  class SvnWorkspace.SvnRemoveCommand
           
 

Methods in org.modeshape.connector.svn that return PathWorkspace.ChangeCommand
 PathWorkspace.ChangeCommand<PathNode> SvnWorkspace.createMoveCommand(PathNode source, PathNode target)
           
 

Method parameters in org.modeshape.connector.svn with type arguments of type PathWorkspace.ChangeCommand
 void SvnWorkspace.commit(List<PathWorkspace.ChangeCommand<PathNode>> commands)
           
 

Uses of PathWorkspace.ChangeCommand in org.modeshape.graph.connector.base
 

Methods in org.modeshape.graph.connector.base that return PathWorkspace.ChangeCommand
 PathWorkspace.ChangeCommand<NodeType> PathWorkspace.createMoveCommand(NodeType source, NodeType target)
          Create a change command that represents the movement of a node.
 PathWorkspace.ChangeCommand<NodeType> PathWorkspace.createPutCommand(NodeType oldNode, NodeType node)
          Create a change command for the required update to the given node
 PathWorkspace.ChangeCommand<NodeType> PathWorkspace.createRemoveCommand(Path path)
          Create a change command for the removal of the given node and its descendants
 

Method parameters in org.modeshape.graph.connector.base with type arguments of type PathWorkspace.ChangeCommand
 void PathWorkspace.commit(List<PathWorkspace.ChangeCommand<NodeType>> commands)
          Successively (and in order) apply the changes from the list of pending commands All validation for each of the objects (including validation of resource availability in the underlying persistent store) should be performed prior to invoking this method.
 



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