|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.ibm.security.auth.JAASPrincipal
com.ibm.security.auth.UserIDPrincipal
public class UserIDPrincipal
This class extends the JAASPrincipal
class
and represents a user's identification (UID).
Principals such as this UserIDPrincipal
may be associated with a particular Subject
to augment that Subject
with an additional
identity. Refer to the Subject
class for more information
on how to achieve this. Authorization decisions can then be based upon
the Principals associated with a Subject
.
Principal
,
Subject
,
Serialized FormConstructor Summary | |
---|---|
UserIDPrincipal(long lname)
Create an UserIDPrincipal using a
long representation of the user's identification. |
|
UserIDPrincipal(java.lang.String name)
Create an UserIDPrincipal using a
String representation of the
user's identification. |
Method Summary | |
---|---|
boolean |
equals(java.lang.Object o)
Compares the specified Object with this UserIDPrincipal
for equality. |
long |
longValue()
Return the user identification number (UID) for this UserIDPrincipal as a long. |
java.lang.String |
toString()
Return a string representation of this UserIDPrincipal . |
Methods inherited from class com.ibm.security.auth.JAASPrincipal |
---|
getName, hashCode |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public UserIDPrincipal(java.lang.String name)
UserIDPrincipal
using a
String
representation of the
user's identification.
name
- the user identification for this user.
java.lang.NullPointerException
- if the name
is null
.
java.lang.IllegalArgumentException
- if the name
has zero length.public UserIDPrincipal(long lname)
UserIDPrincipal
using a
long representation of the user's identification.
lname
- the user identification number (UID) for this user
represented as a long.Method Detail |
---|
public long longValue()
UserIDPrincipal
as a long.
UserIDPrincipal
as a long.public java.lang.String toString()
UserIDPrincipal
.
toString
in interface java.security.Principal
toString
in class JAASPrincipal
UserIDPrincipal
.public boolean equals(java.lang.Object o)
UserIDPrincipal
for equality. Returns true if the given object is also a
UserIDPrincipal
and the two
UserIDPrincipals
have the same user identification.
equals
in interface java.security.Principal
equals
in class JAASPrincipal
o
- Object to be compared for equality with this
UserIDPrincipal
.
UserIDPrincipal
.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |