KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jahia > pipelines > valves > ValveDescriptor


1 package org.jahia.pipelines.valves;
2
3 import org.jahia.utils.xml.betwixt.BaseDescriptor;
4
5 /**
6  * This descriptor bean represents the configuration used to create a
7  * Summit <code>Valve</code>.
8  *
9  * @author <a HREF="mailto:john@zenplex.com">John Thorhauer</a>
10  * @author <a HREF="mailto:jason@zenplex.com">Jason van Zyl</a>
11  * @version $Id: ValveDescriptor.java 10570 2005-09-13 09:35:40Z pvollenweider $
12  */

13 public class ValveDescriptor
14     extends BaseDescriptor
15 {
16     /** Class name of the valve. */
17     private String JavaDoc className;
18
19     /**
20      * Default contructor
21      */

22     public ValveDescriptor()
23     {
24     }
25
26     /**
27      * This is the full package/class name of the
28      * class used for the valve.
29      *
30      * @param s the full package/class name used for the valve
31      */

32     public void setClassName(String JavaDoc className)
33     {
34         this.className = className;
35     }
36
37     /**
38      * @return the full package/class name used for the valve
39      */

40     public String JavaDoc getClassName()
41     {
42         return className;
43     }
44 }
45
Popular Tags