Interface ItemStateLifeCycleListener
-
- All Known Subinterfaces:
ItemStateCreationListener
- All Known Implementing Classes:
ItemImpl,ItemManagerImpl,NodeImpl,PropertyImpl,TransientISFactory,TransientItemStateManager,UniqueIdResolver,VersionHistoryImpl,VersionImpl
public interface ItemStateLifeCycleListenerItemStateLifeCycleListenerallows an implementing class to get notifications about the life cycle of an item state.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidstatusChanged(ItemState state, int previousStatus)Called after anItemStatehas changed its status.
-
-
-
Method Detail
-
statusChanged
void statusChanged(ItemState state, int previousStatus)
Called after anItemStatehas changed its status. The new status can be retrieved by callingItemState.getStatus().- Parameters:
state- the item state, which changed itsstatus.previousStatus- the previous status ofstate.
-
-