KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > portal > common > command > filter > AbstractCommandFilter


1 /*****************************************
2  * *
3  * JBoss Portal: The OpenSource Portal *
4  * *
5  * Forums JBoss Portlet *
6  * *
7  * Distributable under LGPL license. *
8  * See terms of license at gnu.org. *
9  * *
10  *****************************************/

11 package org.jboss.portal.common.command.filter;
12
13 import org.apache.log4j.Logger;
14
15 /**
16  * @author <a HREF="mailto:julien@jboss.org">Julien Viet</a>
17  * @version $Revision: 1.1 $
18  */

19 public abstract class AbstractCommandFilter implements CommandFilter
20 {
21
22    protected final Logger log = Logger.getLogger(getClass());
23
24    private CommandFilter next;
25
26    public CommandFilter getNext()
27    {
28       return next;
29    }
30
31    public void setNext(CommandFilter next)
32    {
33       this.next = next;
34    }
35 }
36
Popular Tags