|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.ibm.security.auth.LinuxPrincipal
public class LinuxPrincipal
This class implements the Principal
interface
and represents a Linux user.
Principals such as this LinuxPrincipal
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
.
This class will be replaced by
UsernamePrincipal
in future releases of JAAS.
Principal
,
Subject
,
UsernamePrincipal
,
Serialized FormConstructor Summary | |
---|---|
LinuxPrincipal(java.lang.String name)
Create an LinuxPrincipal with a Linux username. |
Method Summary | |
---|---|
boolean |
equals(java.lang.Object o)
Compares the specified Object with this LinuxPrincipal
for equality. |
java.lang.String |
getName()
Return the Linux username for this LinuxPrincipal . |
int |
hashCode()
Return a hash code for this LinuxPrincipal . |
java.lang.String |
toString()
Return a string representation of this LinuxPrincipal . |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public LinuxPrincipal(java.lang.String name)
LinuxPrincipal
with a Linux username.
name
- the Linux username for this user.
java.lang.NullPointerException
- if the name
is null
.Method Detail |
---|
public java.lang.String getName()
LinuxPrincipal
.
getName
in interface java.security.Principal
LinuxPrincipal
public java.lang.String toString()
LinuxPrincipal
.
toString
in interface java.security.Principal
toString
in class java.lang.Object
LinuxPrincipal
.public boolean equals(java.lang.Object o)
LinuxPrincipal
for equality. Returns true if the given object is also a
LinuxPrincipal
and the two LinuxPrincipals
have the same name.
equals
in interface java.security.Principal
equals
in class java.lang.Object
o
- Object to be compared for equality with this
LinuxPrincipal
.
LinuxPrincipal
.public int hashCode()
LinuxPrincipal
.
hashCode
in interface java.security.Principal
hashCode
in class java.lang.Object
LinuxPrincipal
.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |