Package | Description |
---|---|
org.apache.jackrabbit.spi.commons.batch |
Modifier and Type | Class and Description |
---|---|
class |
AbstractChangeLog<T extends Operation>
This base class for
ChangeLog implementations maintains a list of operations
of type type T . |
Modifier and Type | Interface and Description |
---|---|
protected static interface |
ConsolidatingChangeLog.CancelableOperation
This class represent an
Operation which can be cancelled by another operation
or which cancels another operation. |
Modifier and Type | Class and Description |
---|---|
static class |
ConsolidatingChangeLog.CancelableOperations.AddNode
An
AddNode operation is is cancelled by a
Remove operation higher up the tree. |
static class |
ConsolidatingChangeLog.CancelableOperations.AddProperty
|
static class |
ConsolidatingChangeLog.CancelableOperations.Empty
An
Empty operation never cancels another operation and is never
cancelled by any other operation. |
static class |
ConsolidatingChangeLog.CancelableOperations.Move
An
Move operation never cancels another operation and is never
cancelled by any other operation. |
static class |
ConsolidatingChangeLog.CancelableOperations.Remove
An
Remove operation never cancels another operation and is never
cancelled by any other operation. |
static class |
ConsolidatingChangeLog.CancelableOperations.ReorderNodes
|
static class |
ConsolidatingChangeLog.CancelableOperations.SetMixins
|
static class |
ConsolidatingChangeLog.CancelableOperations.SetPrimaryType
|
static class |
ConsolidatingChangeLog.CancelableOperations.SetTree |
static class |
ConsolidatingChangeLog.CancelableOperations.SetValue
|
static class |
Operations.AddNode
Representative of an add-node
Operation which calls
Batch.addNode(NodeId, Name, Name, String) when applied to a Batch . |
static class |
Operations.AddProperty
Representative of an add-property
Operation which calls
Batch.addProperty(NodeId, Name, QValue) or Batch.addProperty(NodeId, Name, QValue[])
depending on whether the property is multi valued or not when applied to a Batch . |
static class |
Operations.Empty
|
static class |
Operations.Move
Representative of a move
Operation which calls
Batch.move(NodeId, NodeId, Name) when applied to a Batch . |
static class |
Operations.Remove
|
static class |
Operations.ReorderNodes
Representative of a reorder-nodes
Operation which calls
Batch.reorderNodes(NodeId, NodeId, NodeId) when applied to a Batch . |
static class |
Operations.SetMixins
Representative of a set-mixin
Operation which calls
Batch.setMixins(NodeId, Name[]) when applied to a Batch . |
static class |
Operations.SetPrimaryType
Representative of a set-mixin
Operation which calls
Batch.setMixins(NodeId, Name[]) when applied to a Batch . |
static class |
Operations.SetTree |
static class |
Operations.SetValue
Representative of a set-value
Operation which calls
Batch.setValue(PropertyId, QValue) or Batch.setValue(PropertyId, QValue[])
depending on whether the property is multi valued or not when applied to a Batch . |
Modifier and Type | Method and Description |
---|---|
static Operation |
Operations.addNode(NodeId parentId,
Name nodeName,
Name nodetypeName,
String uuid)
Factory method for creating an
Operations.AddNode operation. |
static Operation |
Operations.addProperty(NodeId parentId,
Name propertyName,
QValue value)
Factory method for creating an
Operations.AddProperty operation. |
static Operation |
Operations.addProperty(NodeId parentId,
Name propertyName,
QValue[] values)
Factory method for creating an
Operations.AddProperty operation. |
static Operation |
Operations.empty()
Factory method for creating an
Operations.Empty operation. |
static Operation |
Operations.move(NodeId srcNodeId,
NodeId destParentNodeId,
Name destName)
Factory method for creating a
Operations.Move operation. |
static Operation |
Operations.remove(ItemId itemId)
Factory method for creating a
Operations.Remove operation. |
static Operation |
Operations.reorderNodes(NodeId parentId,
NodeId srcNodeId,
NodeId beforeNodeId)
Factory method for creating a reorder-nodes
Operation for the given arguments. |
static Operation |
Operations.setMixins(NodeId nodeId,
Name[] mixinNodeTypeNames)
Factory method for creating a set-mixin
Operation for the given arguments. |
static Operation |
Operations.setPrimaryType(NodeId nodeId,
Name primaryTypeName)
Factory method for creating a set-primaryType
Operation for the given arguments. |
static Operation |
Operations.setTree(NodeId parentId,
Tree contentTree)
Factory method for creating an
Operations.SetTree operation. |
static Operation |
Operations.setValue(PropertyId propertyId,
QValue value)
Factory method for creating set-value
Operation for the given arguments. |
static Operation |
Operations.setValue(PropertyId propertyId,
QValue[] values)
Factory method for creating a set-value
Operation for the given arguments. |
Copyright © 2004–2021 The Apache Software Foundation. All rights reserved.