1 /*
2 * StateObjectManagerRegistry.java
3 *
4 * Created on 29 Август 2005 г., 14:10
5 *
6 * To change this template, choose Tools | Options and locate the template under
7 * the Source Creation and Management node. Right-click the template and choose
8 * Open. You can then make changes to the template in the Source Editor.
9 */
10
11 package org.weda.tapestry;
12
13 import org.apache.tapestry.engine.state.StateObjectManager;
14 import org.apache.tapestry.engine.state.StateObjectManagerRegistry;
15
16
17 /**
18 *
19 * @author tim
20 */
21 public class LocalStateRegistry implements StateObjectManagerRegistry {
22 private LocalStateManager stateManager = new LocalStateManager();
23
24 public StateObjectManager get(String str) {
25 return stateManager;
26 }
27 }