Package org.apache.openjpa.kernel
Interface RestoreState
- All Known Subinterfaces:
Broker
,DistributedBroker
- All Known Implementing Classes:
BrokerImpl
,DelegatingBroker
,DistributedBrokerImpl
,FinalizingBrokerImpl
public interface RestoreState
State restore constants.
- Since:
- 0.4.0
- Author:
- Abe White
-
Field Summary
Modifier and TypeFieldDescriptionstatic final int
Restore all state on rollback.static final int
Restore immutable state on rollback; clear mutable state.static final int
Do not restore any state on rollback.
-
Field Details
-
RESTORE_NONE
static final int RESTORE_NONEDo not restore any state on rollback.- See Also:
-
RESTORE_IMMUTABLE
static final int RESTORE_IMMUTABLERestore immutable state on rollback; clear mutable state.- See Also:
-
RESTORE_ALL
static final int RESTORE_ALLRestore all state on rollback.- See Also:
-