com.ibm.security.auth
Class UsernamePrincipal
- java.lang.Object
-
- com.ibm.security.auth.JAASPrincipal
-
- com.ibm.security.auth.UsernamePrincipal
-
- All Implemented Interfaces:
- java.io.Serializable, java.security.Principal
public class UsernamePrincipal extends JAASPrincipal
This class extends the
JAASPrincipalclass and represents the username provided when logging onto a system or server.Principals such as this
UsernamePrincipalmay be associated with a particularSubjectto augment thatSubjectwith an additional identity. Refer to theSubjectclass for more information on how to achieve this. Authorization decisions can then be based upon the Principals associated with aSubject.- See Also:
Principal,Subject, Serialized Form
-
-
Constructor Summary
Constructors Constructor and Description UsernamePrincipal(java.lang.String name)Create anUsernamePrincipalwith a provided username.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description booleanequals(java.lang.Object o)Compares the specified Object with thisUsernamePrincipalfor equality.java.lang.StringtoString()Return a string representation of thisUsernamePrincipal.-
Methods inherited from class com.ibm.security.auth.JAASPrincipal
getName, hashCode
-
-
-
-
Constructor Detail
-
UsernamePrincipal
public UsernamePrincipal(java.lang.String name)
Create anUsernamePrincipalwith a provided username.- Parameters:
name- the provided username for this user.- Throws:
java.lang.NullPointerException- if thenameisnull.java.lang.IllegalArgumentException- if thenamehas zero length.
-
-
Method Detail
-
toString
public java.lang.String toString()
Return a string representation of thisUsernamePrincipal.- Specified by:
toStringin interfacejava.security.Principal- Overrides:
toStringin classJAASPrincipal- Returns:
- a string representation of this
UsernamePrincipal.
-
equals
public boolean equals(java.lang.Object o)
Compares the specified Object with thisUsernamePrincipalfor equality. Returns true if the given object is also aUsernamePrincipaland the two UsernamePrincipals have the same name.- Specified by:
equalsin interfacejava.security.Principal- Overrides:
equalsin classJAASPrincipal- Parameters:
o- Object to be compared for equality with thisUsernamePrincipal.- Returns:
- true if the specified Object is equal to this
UsernamePrincipal.
-
-