Module org.refcodes.command
Package org.refcodes.command
Interface Undoable<CTX,RET,E extends Exception>
-
- Type Parameters:
CTX- The context type to use, can by anyComponent, service or POJO.RET- The return type of theUndoable's proceedings.E- The exception type of theUndoable's erroneous termination.
- All Superinterfaces:
Command<CTX,RET,E>
- All Known Implementing Classes:
AbstractUndoable
public interface Undoable<CTX,RET,E extends Exception> extends Command<CTX,RET,E>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanisUndoable(CTX aContext)This method determines whether theUndoablecan undo the work it has done.voidundo(CTX aContext)This method tries to undo theUndoablein case it was successfully executed.
-
-
-
Method Detail
-
isUndoable
boolean isUndoable(CTX aContext)
This method determines whether theUndoablecan undo the work it has done.
-
undo
void undo(CTX aContext) throws NotUndoableRuntimeException, UnsupportedOperationException
This method tries to undo theUndoablein case it was successfully executed. Test viaisUndoable(Object)beforehand to see whether a call toundo(Object)can be applied.- Parameters:
aContext- The target object which is used by theUndoableto do itsUndoable.- Throws:
NotUndoableRuntimeException- Thrown in case the performed operation cannot be undone, or no operation as been done before by thisUndoable.UnsupportedOperationException- Thrown in case theUndoabledoes not provide undo facilities.
-
-