01: package org.jzonic.jlo.handler;
02:
03: /**
04: * @author mecky
05: *
06: * To change this generated comment edit the template variable "typecomment":
07: * Window>Preferences>Java>Templates.
08: * To enable and disable the creation of type comments go to
09: * Window>Preferences>Java>Code Generation.
10: */
11: public abstract class AbstractHandler implements Handler {
12:
13: private String configName;
14:
15: private AbstractHandler() {
16: }
17:
18: public AbstractHandler(String configName) {
19: this .configName = configName;
20: }
21:
22: public String getConfigurationName() {
23: return configName;
24: }
25: }
|