KickJava   Java API By Example, From Geeks To Geeks.

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


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 SecurityRoleRefMetaData
14 {
15
16    private String JavaDoc roleName;
17    private String JavaDoc roleLink;
18    private Map JavaDoc descriptions;
19    
20    public SecurityRoleRefMetaData(String JavaDoc roleName, String JavaDoc roleLink, Map JavaDoc descriptions)
21    {
22       this.roleName = roleName;
23       this.roleLink = roleLink;
24       this.descriptions = descriptions;
25    }
26
27    public String JavaDoc getRoleName()
28    {
29       return roleName;
30    }
31
32    public String JavaDoc getRoleLink()
33    {
34       return roleLink;
35    }
36
37    public Map JavaDoc getDescriptions()
38    {
39       return descriptions;
40    }
41 }
42
Popular Tags