Class Remove
- java.lang.Object
-
- org.apache.jackrabbit.jcr2spi.operation.AbstractOperation
-
- org.apache.jackrabbit.jcr2spi.operation.TransientOperation
-
- org.apache.jackrabbit.jcr2spi.operation.Remove
-
- All Implemented Interfaces:
Operation
public class Remove extends TransientOperation
Remove
...
-
-
Field Summary
Fields Modifier and Type Field Description protected NodeState
parent
protected ItemState
removeState
-
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 Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
accept(OperationVisitor visitor)
Calls the appropriatevisit
method onvisitor
based on the type of this operation.static Operation
create(ItemState state)
static Operation
create(ItemState state, int options)
NodeState
getParentState()
ItemId
getRemoveId()
ItemState
getRemoveState()
void
persisted()
Informs this Operation that it has been successfully executed.void
undo()
Revert changes made by this operation.-
Methods inherited from class org.apache.jackrabbit.jcr2spi.operation.TransientOperation
getOptions
-
Methods inherited from class org.apache.jackrabbit.jcr2spi.operation.AbstractOperation
addAffectedItemState, assertChildNodeEntries, getAffectedItemStates, getName, getNodeState, getStatus
-
-
-
-
Method Detail
-
accept
public void accept(OperationVisitor visitor) throws AccessDeniedException, UnsupportedRepositoryOperationException, VersionException, RepositoryException
Description copied from interface:Operation
Calls the appropriatevisit
method onvisitor
based on the type of this operation.- Parameters:
visitor
- the visitor to call back.- Throws:
AccessDeniedException
UnsupportedRepositoryOperationException
VersionException
RepositoryException
- See Also:
Operation.accept(OperationVisitor)
-
persisted
public void persisted() throws RepositoryException
Description copied from interface:Operation
Informs this Operation that it has been successfully executed.- Throws:
RepositoryException
- See Also:
Operation.persisted()
-
undo
public void undo() throws RepositoryException
Description copied from interface:Operation
Revert changes made by this operation.- Specified by:
undo
in interfaceOperation
- Overrides:
undo
in classAbstractOperation
- Throws:
RepositoryException
- See Also:
Operation.undo()
-
getRemoveId
public ItemId getRemoveId() throws RepositoryException
- Throws:
RepositoryException
-
getRemoveState
public ItemState getRemoveState()
-
getParentState
public NodeState getParentState()
-
create
public static Operation create(ItemState state) throws RepositoryException
- Throws:
RepositoryException
-
create
public static Operation create(ItemState state, int options) throws RepositoryException
- Throws:
RepositoryException
-
-