| |
|
| java.lang.Object com.rift.coad.security.BasicPrincipal
BasicPrincipal | public class BasicPrincipal implements Principal,Serializable(Code) | | This object is responsible for storing the principal information.
author: brett |
Method Summary | |
public boolean | equals(Object value) This method returns true if the objects are the same type and contain the
same value. | public String | getName() | public int | hashCode() This method returns the hash code of this item. | public String | toString() This method returns the string value of this object. |
BasicPrincipal | public BasicPrincipal(String name)(Code) | | Creates a new instance of BasicPrincipal
Parameters: name - The name of this principal |
equals | public boolean equals(Object value)(Code) | | This method returns true if the objects are the same type and contain the
same value.
TRUE if equal. Parameters: value - The value to perform the comparison on. |
getName | public String getName()(Code) | | This method returns the name of the principal
|
hashCode | public int hashCode()(Code) | | This method returns the hash code of this item.
|
toString | public String toString()(Code) | | This method returns the string value of this object.
|
|
|
|