Class TransientOperation
- java.lang.Object
-
- org.apache.jackrabbit.jcr2spi.operation.AbstractOperation
-
- org.apache.jackrabbit.jcr2spi.operation.TransientOperation
-
- All Implemented Interfaces:
Operation
- Direct Known Subclasses:
AddNode
,AddProperty
,Move
,Remove
,ReorderNodes
,SetMixin
,SetPrimaryType
,SetPropertyValue
,SetTree
public abstract class TransientOperation extends AbstractOperation
TransientOperation
...
-
-
Field Summary
-
Fields inherited from class org.apache.jackrabbit.jcr2spi.operation.AbstractOperation
status
-
Fields inherited from interface org.apache.jackrabbit.jcr2spi.operation.Operation
STATUS_PENDING, STATUS_PERSISTED, STATUS_UNDO
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getOptions()
Return the set of options that should be used to validate the transient modification.-
Methods inherited from class org.apache.jackrabbit.jcr2spi.operation.AbstractOperation
addAffectedItemState, assertChildNodeEntries, getAffectedItemStates, getName, getNodeState, getStatus, undo
-
-
-
-
Method Detail
-
getOptions
public int getOptions()
Return the set of options that should be used to validate the transient modification. Valid options are a combination of any of the following options:CHECK_NONE
if no validation check is required,CHECK_ACCESS
,CHECK_COLLISION
,CHECK_CONSTRAINTS
,CHECK_LOCK
,CHECK_VERSIONING
,CHECK_ALL
as shortcut for all options.
- Returns:
- The set of options used to validate the transient modification.
- See Also:
ItemStateValidator
-
-