com.ibm.security.auth
Class ServerPrincipal
- java.lang.Object
-
- com.ibm.security.auth.JAASPrincipal
-
- com.ibm.security.auth.ServerPrincipal
-
- All Implemented Interfaces:
- java.io.Serializable, java.security.Principal
public class ServerPrincipal extends JAASPrincipal
This class extends the
JAASPrincipal
class and represents the LAN server that validated a user's logon.Principals such as this
ServerPrincipal
may be associated with a particularSubject
to augment thatSubject
with an additional identity. Refer to theSubject
class for more information on how to achieve this. Authorization decisions can then be based upon the Principals associated with aSubject
.- See Also:
Principal
,Subject
, Serialized Form
-
-
Constructor Summary
Constructors Constructor and Description ServerPrincipal(java.lang.String name)
Create anServerPrincipal
using aString
representation of the LAN server name.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description boolean
equals(java.lang.Object o)
Compares the specified Object with thisServerPrincipal
for equality.java.lang.String
toString()
Return a string representation of thisServerPrincipal
.-
Methods inherited from class com.ibm.security.auth.JAASPrincipal
getName, hashCode
-
-
-
-
Constructor Detail
-
ServerPrincipal
public ServerPrincipal(java.lang.String name)
Create anServerPrincipal
using aString
representation of the LAN server name.- Parameters:
name
- the name for this LAN server.- Throws:
java.lang.NullPointerException
- if thename
isnull
.java.lang.IllegalArgumentException
- if thename
has zero length.
-
-
Method Detail
-
toString
public java.lang.String toString()
Return a string representation of thisServerPrincipal
.- Specified by:
toString
in interfacejava.security.Principal
- Overrides:
toString
in classJAASPrincipal
- Returns:
- a string representation of this
ServerPrincipal
.
-
equals
public boolean equals(java.lang.Object o)
Compares the specified Object with thisServerPrincipal
for equality. Returns true if the given object is also aServerPrincipal
and the two ServerPrincipals have the same name.- Specified by:
equals
in interfacejava.security.Principal
- Overrides:
equals
in classJAASPrincipal
- Parameters:
o
- Object to be compared for equality with thisServerPrincipal
.- Returns:
- true if the specified Object is equal to this
ServerPrincipal
.
-
-