KickJava   Java API By Example, From Geeks To Geeks.

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


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 java.util.Set JavaDoc;
12
13 /**
14  * @author <a HREF="mailto:julien@jboss.org">Julien Viet</a>
15  * @version $Revision: 1.1 $
16  */

17 public class SchemeMetaData
18 {
19
20    private String JavaDoc name;
21    private Set JavaDoc items;
22    
23    public SchemeMetaData(String JavaDoc name)
24    {
25       this.name = name;
26    }
27    
28    public String JavaDoc getName()
29    {
30       return name;
31    }
32    
33    public Set JavaDoc getItems()
34    {
35       return items;
36    }
37    
38    public void setItems(Set JavaDoc items)
39    {
40       this.items = items;
41    }
42 }
43
Popular Tags