KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > portal > core > metadata > ProxyPreferenceSetMetaData


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

9 package org.jboss.portal.core.metadata;
10
11 import org.jboss.portal.common.plugin.PluginMetaData;
12
13 /**
14  * @author <a HREF="mailto:julien@jboss.org">Julien Viet</a>
15  * @version $Revision: 1.1 $
16  */

17 public class ProxyPreferenceSetMetaData implements PluginMetaData
18 {
19
20    /** Proxy class for typed preferences. */
21    protected String JavaDoc proxyClassName;
22
23    public String JavaDoc getProxyClassName()
24    {
25       return proxyClassName;
26    }
27
28    public void setProxyClassName(String JavaDoc proxyClassName)
29    {
30       this.proxyClassName = proxyClassName;
31    }
32 }
33
Popular Tags