org.apache.tapestry.engine.state
Interface StateObjectPersistenceManager

All Known Implementing Classes:
ApplicationScopeManager, SessionScopeManager

public interface StateObjectPersistenceManager

Interface for the nuts and bolts of getting and storing application state objects. These are intended to be stateless, and manage a number of state objects, mapping objectNames to internal storage in some way.

Since:
4.0
Author:
Howard M. Lewis Ship

Method Summary
 boolean exists(String objectName)
           
 Object get(String objectName, StateObjectFactory factory)
           
 void store(String objectName, Object stateObject)
           
 

Method Detail

exists

boolean exists(String objectName)

get

Object get(String objectName,
           StateObjectFactory factory)

store

void store(String objectName,
           Object stateObject)


Copyright © 2006-2008 Apache Software Foundation. All Rights Reserved.