KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > openharmonise > vfs > authentication > VFSUser


1 /*
2  * (C) Copyright SimulacraMedia 2003. All rights reserved.
3  *
4  * Created on 19-Nov-2004
5  *
6  */

7 package org.openharmonise.vfs.authentication;
8
9 /**
10  * FIXME - Matthew Large DIDN'T GIVE ME A DESCRIPTION!!
11  * @author Matthew Large
12  * @version $Revision: 1.1 $
13  *
14  */

15 public interface VFSUser {
16
17     /**
18      * Returns the full path for the user's role.
19      *
20      * @return Full path
21      */

22     public String JavaDoc getRolePath();
23     
24     /**
25      * Checks if the user is a super user.
26      *
27      * @return true if the user is a super user
28      */

29     public boolean isSuperUser();
30     
31 }
32
Popular Tags