KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > portal > portlet > metadata > UserAttributeMetaData


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.portlet.metadata;
10
11 import java.util.Map JavaDoc;
12
13 public class UserAttributeMetaData
14 {
15    private Map JavaDoc descriptions;
16    private String JavaDoc name;
17
18    public UserAttributeMetaData()
19    {
20    }
21
22    public Map JavaDoc getDescriptions()
23    {
24       return descriptions;
25    }
26
27    public void setDescriptions(Map JavaDoc descriptions)
28    {
29       this.descriptions = descriptions;
30    }
31
32    public String JavaDoc getName()
33    {
34       return name;
35    }
36
37    public void setName(String JavaDoc name)
38    {
39       this.name = name;
40    }
41 }
42
Popular Tags