com.ibm.security.auth
Class AIXPrincipal
- java.lang.Object
-
- com.ibm.security.auth.AIXPrincipal
-
- All Implemented Interfaces:
- java.io.Serializable, java.security.Principal
Deprecated.replaced byUsernamePrincipal.
@Deprecated public class AIXPrincipal extends java.lang.Object implements java.security.Principal, java.io.SerializableThis class implements the
Principalinterface and represents an AIX user.Principals such as this
AIXPrincipalmay 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,UsernamePrincipal, Serialized Form
-
-
Constructor Summary
Constructors Constructor and Description AIXPrincipal(java.lang.String name)Deprecated.Create anAIXPrincipalwith a AIX username.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method and Description booleanequals(java.lang.Object o)Deprecated.Compares the specified Object with thisAIXPrincipalfor equality.java.lang.StringgetName()Deprecated.Return the AIX username for thisAIXPrincipal.inthashCode()Deprecated.Return a hash code for thisAIXPrincipal.java.lang.StringtoString()Deprecated.Return a string representation of thisAIXPrincipal.
-
-
-
Constructor Detail
-
AIXPrincipal
public AIXPrincipal(java.lang.String name)
Deprecated.Create anAIXPrincipalwith a AIX username.- Parameters:
name- the AIX username for this user.- Throws:
java.lang.NullPointerException- if thenameisnull.
-
-
Method Detail
-
getName
public java.lang.String getName()
Deprecated.Return the AIX username for thisAIXPrincipal.- Specified by:
getNamein interfacejava.security.Principal- Returns:
- the AIX username for this
AIXPrincipal
-
toString
public java.lang.String toString()
Deprecated.Return a string representation of thisAIXPrincipal.- Specified by:
toStringin interfacejava.security.Principal- Overrides:
toStringin classjava.lang.Object- Returns:
- a string representation of this
AIXPrincipal.
-
equals
public boolean equals(java.lang.Object o)
Deprecated.Compares the specified Object with thisAIXPrincipalfor equality. Returns true if the given object is also anAIXPrincipaland the two AIXPrincipals have the same name.- Specified by:
equalsin interfacejava.security.Principal- Overrides:
equalsin classjava.lang.Object- Parameters:
o- Object to be compared for equality with thisAIXPrincipal.- Returns:
- true if the specified Object is equal to this
AIXPrincipal.
-
hashCode
public int hashCode()
Deprecated.Return a hash code for thisAIXPrincipal.- Specified by:
hashCodein interfacejava.security.Principal- Overrides:
hashCodein classjava.lang.Object- Returns:
- a hash code for this
AIXPrincipal.
-
-