com.ibm.security.auth
Class NTDomainPrincipal
- java.lang.Object
com.ibm.security.auth.NTDomainPrincipal
- public class NTDomainPrincipal
- extends java.lang.Object
- implements java.security.Principal, java.io.Serializable
This class implements the Principal
interface
and represents the name of the Windows NT domain into which the
user authenticated. This will be a domain name if the user logged
into a Windows NT domain, a workgroup name if the user logged into
a workgroup, or a machine name if the user logged into a standalone
configuration.
Principals such as this NTDomainPrincipal
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 DomainPrincipal
in future releases of JAAS.
Constructor Summary
Constructor and Description |
---|
NTDomainPrincipal(java.lang.String name)
Create an
NTDomainPrincipal with a Windows NT domain name.
|
Method Summary
Modifier and Type | Method and Description |
---|---|
|
equals(java.lang.Object o)
Compares the specified Object with this
NTDomainPrincipal
for equality.
|
|
getName()
Return the Windows NT domain name for this
NTDomainPrincipal .
|
|
hashCode()
Return a hash code for this
NTDomainPrincipal .
|
|
toString()
Return a string representation of this
NTDomainPrincipal .
|
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Constructor Detail
NTDomainPrincipal
- public NTDomainPrincipal(java.lang.String name)
name
- the Windows NT domain name for this user.
java.lang.NullPointerException
- if the name
is null
. Method Detail
getName
- public java.lang.String getName( )
NTDomainPrincipal
.
getName
in interface java.security.Principal
NTDomainPrincipal
toString
- public java.lang.String toString( )
NTDomainPrincipal
.
toString
in interface java.security.Principal
toString
in class java.lang.Object
NTDomainPrincipal
. equals
- public boolean equals(java.lang.Object o)
NTDomainPrincipal
for equality. Returns true if the given object is also a
NTDomainPrincipal
and the two NTDomainPrincipals
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
NTDomainPrincipal
. NTDomainPrincipal
. hashCode
- public int hashCode()
NTDomainPrincipal
.
hashCode
in interface java.security.Principal
hashCode
in class java.lang.Object
NTDomainPrincipal
.
NTDomainPrincipal
with a Windows NT domain name.