/*
* Copyright 2001-2007 Geert Bevin <gbevin[remove] at uwyn dot com>
* Distributed under the terms of either:
* - the common development and distribution license (CDDL), v1.0; or
* - the GNU Lesser General Public License, v2.1 or later
* $Id: StateStoreFactory.java 3634 2007-01-08 21:42:24Z gbevin $
*/
package com.uwyn.rife.engine;
import com.uwyn.rife.engine.StateStore;
import java.util.HashMap;
import java.util.Map;
public abstract class StateStoreFactory
{
private static Map<String, StateStore> sStateStores = new HashMap<String, StateStore>() {{
put(StateStoreQuery.IDENTIFIER, new StateStoreQuery());
put(StateStoreSession.IDENTIFIER, new StateStoreSession());
}};
public static StateStore getInstance(String identifier)
{
return sStateStores.get(identifier);
}
public static void put(String identifier, StateStore stateStore)
{
sStateStores.put(identifier, stateStore);
}
}
|