1
2 package inklings.jgatms.command;
3
4 import org.apache.commons.chain.Command;
5 import org.apache.commons.chain.Context;
6
7 import inklings.jgatms.ContextKeys;
8
9 /***
10 * Base class for JGATMS Command objects.
11 *
12 * @author Greg Reddin
13 */
14 public abstract class BaseCommand implements Command {
15
16 public String getHibernateSessionKey() {
17 return ContextKeys.HIBERNATE_SESSION_KEY;
18 }
19
20 public String getHibernateSessionFactoryKey() {
21 return ContextKeys.HIBERNATE_SESSION_FACTORY_KEY;
22 }
23
24 public String getDispatchKey() {
25 return ContextKeys.DISPATCH_KEY;
26 }
27 }
This page was automatically generated by Maven