Interface ItemStateLifeCycleListener
-
- All Known Subinterfaces:
ItemStateCreationListener
- All Known Implementing Classes:
ItemImpl
,ItemManagerImpl
,NodeImpl
,PropertyImpl
,TransientISFactory
,TransientItemStateManager
,UniqueIdResolver
,VersionHistoryImpl
,VersionImpl
public interface ItemStateLifeCycleListener
ItemStateLifeCycleListener
allows 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 void
statusChanged(ItemState state, int previousStatus)
Called after anItemState
has changed its status.
-
-
-
Method Detail
-
statusChanged
void statusChanged(ItemState state, int previousStatus)
Called after anItemState
has 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
.
-
-