|
|||||||||
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.DomainIDPrincipal
public class DomainIDPrincipal
This class extends the JAASPrincipal
class and
represents the domain ID the user is currently logged onto. The
principal is designed to be used in conjunction with NT domain SID
data. The DomainPrincipal
class should be used when
creating Principals based on recognizable domain names such as
"WORKGROUP" or "ibm_dom".
Principals such as this DomainIDPrincipal
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
,
DomainPrincipal
,
Subject
,
Serialized FormConstructor Summary | |
---|---|
DomainIDPrincipal(java.lang.String name)
Create an DomainIDPrincipal using a
String representation of the domain. |
Method Summary | |
---|---|
boolean |
equals(java.lang.Object o)
Compares the specified Object with this DomainIDPrincipal
for equality. |
java.lang.String |
toString()
Return a string representation of this DomainIDPrincipal . |
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 DomainIDPrincipal(java.lang.String name)
DomainIDPrincipal
using a
String
representation of the domain.
name
- the domain ID.
java.lang.NullPointerException
- if the domain
is null
.
java.lang.IllegalArgumentException
- if the name
has zero length.Method Detail |
---|
public java.lang.String toString()
DomainIDPrincipal
.
toString
in interface java.security.Principal
toString
in class JAASPrincipal
DomainIDPrincipal
.public boolean equals(java.lang.Object o)
DomainIDPrincipal
for equality. Returns true if the given object is also a
DomainIDPrincipal
and the two DomainIDPrincipals
have the same domain ID.
equals
in interface java.security.Principal
equals
in class JAASPrincipal
o
- Object to be compared for equality with this
DomainIDPrincipal
.
DomainIDPrincipal
.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |