KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > raptus > owxv3 > api > usermgr > Role


1 /*
2  * Role.java
3  *
4  * Created on June 2, 2003, 12:41 PM
5  */

6
7 package com.raptus.owxv3.api.usermgr;
8
9 /**
10  * The role interface
11  *
12  * @author root
13  */

14 public interface Role
15 {
16     /**
17      * Return the name of this role
18      *
19      * @return the name of this role
20      */

21     public String JavaDoc getName();
22     
23     /**
24      * Return the description of this role
25      *
26      * @return the description of this role
27      */

28     public String JavaDoc getDescription();
29 }
30
Popular Tags