Package org.apache.jackrabbit.spi.commons.batch
@Version("2.4.0")
package org.apache.jackrabbit.spi.commons.batch
-
ClassDescriptionAbstractChangeLog<T extends Operation>This base class for
ChangeLogimplementations maintains a list of operations of type typeT.AnOperationrepresents a method call on aBatch.Factory for creatingOperations.Representative of an add-nodeOperationwhich callsBatch.addNode(NodeId, Name, Name, String)when applied to aBatch.Representative 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.Representative of a moveOperationwhich callsBatch.move(NodeId, NodeId, Name)when applied to aBatch.Representative of a reorder-nodesOperationwhich callsBatch.reorderNodes(NodeId, NodeId, NodeId)when applied to aBatch.Representative of a set-mixinOperationwhich callsBatch.setMixins(NodeId, Name[])when applied to aBatch.Representative of a set-mixinOperationwhich callsBatch.setMixins(NodeId, Name[])when applied to aBatch.Representative 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.