KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > portal > common > command > AbstractCommand


1 /***************************************
2  * *
3  * Nukes: The OpenSource CMS *
4  * *
5  * Distributable under GPL license. *
6  * See terms of license at gnu.org. *
7  * *
8  ***************************************/

9 package org.jboss.portal.common.command;
10
11 import org.apache.log4j.Logger;
12
13 /**
14  * @author <a HREF="theute@users.sourceforge.net">Thomas Heute</a>
15  * $Revision: 1.2 $
16  */

17 public abstract class AbstractCommand
18       implements Command, CommandConstants
19 {
20
21    protected Logger log = Logger.getLogger(getClass());
22
23    private final ReflectedConfigurator configurator = new ReflectedConfigurator(this);
24
25    public Configurator getConfigurator()
26    {
27       return configurator;
28    }
29
30 }
31
Popular Tags