public interface StateObjectManager
StateObjectPersistenceManagerfor
storing the state object between request cycles, and a
StateObjectFactoryto create the object in the first
place.| Modifier and Type | Method and Description |
|---|---|
boolean |
exists()
Returns true if the application state object exists (i.e., a value has been stored).
|
java.lang.Object |
get()
Gets or creates the application state object.
|
void |
store(java.lang.Object stateObject)
Stores (if necessary) the object back into persistent storage.
|