KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > exoplatform > services > portletcontainer > pci > model > SecurityRoleRef


1 /***************************************************************************
2  * Copyright 2001-2003 The eXo Platform SARL All rights reserved. *
3  * Please look at license.txt in info directory for more license detail. *
4  **************************************************************************/

5 package org.exoplatform.services.portletcontainer.pci.model;
6
7 /**
8  * Jul 11, 2004
9  * @author: Tuan Nguyen
10  * @email: tuan08@users.sourceforge.net
11  * @version: $Id: SecurityRoleRef.java,v 1.1 2004/07/13 02:31:13 tuan08 Exp $
12  */

13 public class SecurityRoleRef {
14     private String JavaDoc roleName;
15     private String JavaDoc roleLink;
16
17     public String JavaDoc getRoleLink() {
18         return roleLink;
19     }
20
21     public void setRoleLink(String JavaDoc roleLink) {
22         this.roleLink = roleLink;
23     }
24
25     public String JavaDoc getRoleName() {
26         return roleName;
27     }
28
29     public void setRoleName(String JavaDoc roleName) {
30         this.roleName = roleName;
31     }
32 }
Popular Tags