com.ibm.security.auth
Class GroupIDPrincipal
- java.lang.Object
-
- com.ibm.security.auth.JAASPrincipal
-
- com.ibm.security.auth.GroupIDPrincipal
-
- All Implemented Interfaces:
- java.io.Serializable, java.security.Principal
public class GroupIDPrincipal extends JAASPrincipal
This class extends the
JAASPrincipalclass and represents a user's group identification (GID).Principals such as this
GroupIDPrincipalmay 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 GroupIDPrincipal(long lname)Create anGroupIDPrincipalusing a long representation of the user's group identification number (GID).GroupIDPrincipal(java.lang.String name)Create aGroupIDPrincipalusing aStringrepresentation of the user's group identification (GID).
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description booleanequals(java.lang.Object o)Compares the specified Object with thisGroupIDPrincipalfor equality.longlongValue()Return the user's group identification number (GID) for thisGroupIDPrincipalas a long.java.lang.StringtoString()Return a string representation of thisGroupIDPrincipal.-
Methods inherited from class com.ibm.security.auth.JAASPrincipal
getName, hashCode
-
-
-
-
Constructor Detail
-
GroupIDPrincipal
public GroupIDPrincipal(java.lang.String name)
Create aGroupIDPrincipalusing aStringrepresentation of the user's group identification (GID).- Parameters:
name- the user's group identification for this user.- Throws:
java.lang.NullPointerException- if thenameisnull.java.lang.IllegalArgumentException- if thenamehas zero length.
-
GroupIDPrincipal
public GroupIDPrincipal(long lname)
Create anGroupIDPrincipalusing a long representation of the user's group identification number (GID).- Parameters:
lname- the user's group identification number (GID) for this user represented as a long.
-
-
Method Detail
-
longValue
public long longValue()
Return the user's group identification number (GID) for thisGroupIDPrincipalas a long.- Returns:
- the user's group identification number (GID)
for this
GroupIDPrincipalas a long.
-
toString
public java.lang.String toString()
Return a string representation of thisGroupIDPrincipal.- Specified by:
toStringin interfacejava.security.Principal- Overrides:
toStringin classJAASPrincipal- Returns:
- a string representation of this
GroupIDPrincipal.
-
equals
public boolean equals(java.lang.Object o)
Compares the specified Object with thisGroupIDPrincipalfor equality. Returns true if the given object is also aGroupIDPrincipaland the two GroupIDPrincipals have the same group identification string.- Specified by:
equalsin interfacejava.security.Principal- Overrides:
equalsin classJAASPrincipal- Parameters:
o- Object to be compared for equality with thisGroupIDPrincipal.- Returns:
- true if the specified Object is equal to this
GroupIDPrincipal.
-
-