01: /*
02: * JFolder, Copyright 2001-2006 Gary Steinmetz
03: *
04: * Distributable under LGPL license.
05: * See terms of license at gnu.org.
06: */
07:
08: package org.jfolder.security.model;
09:
10: //base classes
11:
12: //project specific classes
13:
14: //other classes
15:
16: public interface UserIdentity {
17:
18: //
19: public String getName();
20:
21: //
22: //public boolean isSecurityTypePresent();
23: public String getSecurityType();
24:
25: //public String getSecurityClass();
26:
27: //
28: public boolean isValid();
29:
30: public boolean isAnonymous();
31:
32: //public String getProperty(String inProperty);
33:
34: }
|