Uses of Interface
org.apache.jackrabbit.spi.commons.batch.Operation
- 
Packages that use Operation Package Description org.apache.jackrabbit.spi.commons.batch  - 
- 
Uses of Operation in org.apache.jackrabbit.spi.commons.batch
Classes in org.apache.jackrabbit.spi.commons.batch with type parameters of type Operation Modifier and Type Class Description classAbstractChangeLog<T extends Operation>This base class forChangeLogimplementations maintains a list of operations of type typeT.Subinterfaces of Operation in org.apache.jackrabbit.spi.commons.batch Modifier and Type Interface Description protected static interfaceConsolidatingChangeLog.CancelableOperationThis class represent anOperationwhich can be cancelled by another operation or which cancels another operation.Classes in org.apache.jackrabbit.spi.commons.batch that implement Operation Modifier and Type Class Description static classConsolidatingChangeLog.CancelableOperations.AddNodeAnAddNodeoperation is is cancelled by aRemoveoperation higher up the tree.static classConsolidatingChangeLog.CancelableOperations.AddPropertystatic classConsolidatingChangeLog.CancelableOperations.EmptyAnEmptyoperation never cancels another operation and is never cancelled by any other operation.static classConsolidatingChangeLog.CancelableOperations.MoveAnMoveoperation never cancels another operation and is never cancelled by any other operation.static classConsolidatingChangeLog.CancelableOperations.RemoveAnRemoveoperation never cancels another operation and is never cancelled by any other operation.static classConsolidatingChangeLog.CancelableOperations.ReorderNodesstatic classConsolidatingChangeLog.CancelableOperations.SetMixinsstatic classConsolidatingChangeLog.CancelableOperations.SetPrimaryTypestatic classConsolidatingChangeLog.CancelableOperations.SetTreestatic classConsolidatingChangeLog.CancelableOperations.SetValuestatic classOperations.AddNodeRepresentative of an add-nodeOperationwhich callsBatch.addNode(NodeId, Name, Name, String)when applied to aBatch.static classOperations.AddPropertyRepresentative of an add-propertyOperationwhich callsBatch.addProperty(NodeId, Name, QValue)orBatch.addProperty(NodeId, Name, QValue[])depending on whether the property is multi valued or not when applied to aBatch.static classOperations.Emptystatic classOperations.MoveRepresentative of a moveOperationwhich callsBatch.move(NodeId, NodeId, Name)when applied to aBatch.static classOperations.Removestatic classOperations.ReorderNodesRepresentative of a reorder-nodesOperationwhich callsBatch.reorderNodes(NodeId, NodeId, NodeId)when applied to aBatch.static classOperations.SetMixinsRepresentative of a set-mixinOperationwhich callsBatch.setMixins(NodeId, Name[])when applied to aBatch.static classOperations.SetPrimaryTypeRepresentative of a set-mixinOperationwhich callsBatch.setMixins(NodeId, Name[])when applied to aBatch.static classOperations.SetTreestatic classOperations.SetValueRepresentative of a set-valueOperationwhich callsBatch.setValue(PropertyId, QValue)orBatch.setValue(PropertyId, QValue[])depending on whether the property is multi valued or not when applied to aBatch.Methods in org.apache.jackrabbit.spi.commons.batch that return Operation Modifier and Type Method Description static OperationOperations. addNode(NodeId parentId, Name nodeName, Name nodetypeName, String uuid)Factory method for creating anOperations.AddNodeoperation.static OperationOperations. addProperty(NodeId parentId, Name propertyName, QValue value)Factory method for creating anOperations.AddPropertyoperation.static OperationOperations. addProperty(NodeId parentId, Name propertyName, QValue[] values)Factory method for creating anOperations.AddPropertyoperation.static OperationOperations. empty()Factory method for creating anOperations.Emptyoperation.static OperationOperations. move(NodeId srcNodeId, NodeId destParentNodeId, Name destName)Factory method for creating aOperations.Moveoperation.static OperationOperations. remove(ItemId itemId)Factory method for creating aOperations.Removeoperation.static OperationOperations. reorderNodes(NodeId parentId, NodeId srcNodeId, NodeId beforeNodeId)Factory method for creating a reorder-nodesOperationfor the given arguments.static OperationOperations. setMixins(NodeId nodeId, Name[] mixinNodeTypeNames)Factory method for creating a set-mixinOperationfor the given arguments.static OperationOperations. setPrimaryType(NodeId nodeId, Name primaryTypeName)Factory method for creating a set-primaryTypeOperationfor the given arguments.static OperationOperations. setTree(NodeId parentId, Tree contentTree)Factory method for creating anOperations.SetTreeoperation.static OperationOperations. setValue(PropertyId propertyId, QValue value)Factory method for creating set-valueOperationfor the given arguments.static OperationOperations. setValue(PropertyId propertyId, QValue[] values)Factory method for creating a set-valueOperationfor the given arguments. 
 -