Class Overview
This class implements the Principal interface
and represents a Windows NT user.
Principals such as this NTUserPrincipal
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.
Summary
| Public Methods |
|
boolean
|
equals(Object o)
Compares the specified Object with this NTUserPrincipal
for equality.
|
|
String
|
getName()
Return the Windows NT username for this NTPrincipal.
|
|
int
|
hashCode()
Return a hash code for this NTUserPrincipal.
|
|
String
|
toString()
Return a string representation of this NTPrincipal.
|
|
[Expand]
Inherited Methods |
From class
java.lang.Object
|
Object
|
clone()
Creates and returns a copy of this object.
|
|
boolean
|
equals(Object obj)
Indicates whether some other object is "equal to" this one.
|
|
void
|
finalize()
Called by the garbage collector on an object when garbage collection
determines that there are no more references to the object.
|
|
final
Class<?>
|
getClass()
Returns the runtime class of this Object.
|
|
int
|
hashCode()
Returns a hash code value for the object.
|
|
final
void
|
notify()
Wakes up a single thread that is waiting on this object's
monitor.
|
|
final
void
|
notifyAll()
Wakes up all threads that are waiting on this object's monitor.
|
|
String
|
toString()
Returns a string representation of the object.
|
|
final
void
|
wait()
Causes the current thread to wait until another thread invokes the
notify() method or the
notifyAll() method for this object.
|
|
final
void
|
wait(long timeout, int nanos)
Causes the current thread to wait until another thread invokes the
notify() method or the
notifyAll() method for this object, or
some other thread interrupts the current thread, or a certain
amount of real time has elapsed.
|
|
final
void
|
wait(long timeout)
Causes the current thread to wait until either another thread invokes the
notify() method or the
notifyAll() method for this object, or a
specified amount of time has elapsed.
|
|
From interface
java.security.Principal
|
abstract
boolean
|
equals(Object another)
Compares this principal to the specified object.
|
|
abstract
String
|
getName()
Returns the name of this principal.
|
|
abstract
int
|
hashCode()
Returns a hashcode for this principal.
|
|
abstract
String
|
toString()
Returns a string representation of this principal.
|
|
Public Constructors
public
NTUserPrincipal
(String name)
Create an NTUserPrincipal with a Windows NT username.
Parameters
| name
| the Windows NT username for this user. |
Public Methods
public
boolean
equals
(Object o)
Compares the specified Object with this NTUserPrincipal
for equality. Returns true if the given object is also a
NTUserPrincipal and the two NTUserPrincipals
have the same name.
Parameters
| o
| Object to be compared for equality with this
NTPrincipal. |
Returns
- true if the specified Object is equal equal to this
NTPrincipal.
public
String
getName
()
Return the Windows NT username for this NTPrincipal.
Returns
- the Windows NT username for this
NTPrincipal
public
int
hashCode
()
Return a hash code for this NTUserPrincipal.
Returns
- a hash code for this
NTUserPrincipal.
public
String
toString
()
Return a string representation of this NTPrincipal.
Returns
- a string representation of this
NTPrincipal.