01: /*
02: * (C) Copyright SimulacraMedia 2003. All rights reserved.
03: *
04: * Created on 19-Nov-2004
05: *
06: */
07: package org.openharmonise.vfs.authentication;
08:
09: /**
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 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: }
|