Package com.iplanet.sso
Interface SSOTokenID
-
@SupportedAll public interface SSOTokenID
TheSSOTokenID
is an interface that is used to identify a single sign on token object. It contains a random string and the name of the server. The random string in theSSOTokenID
is unique on a given server.- See Also:
SSOToken
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
equals(Object object)
Returnstrue
if current object is equals toobject
.int
hashCode()
Returns a hash code for this object.String
toString()
Returns the encrypted Single Sign On token string.
-
-
-
Method Detail
-
toString
String toString()
Returns the encrypted Single Sign On token string.
-
equals
boolean equals(Object object)
Returnstrue
if current object is equals toobject
. This are the conditionsobject
is not null- this instance and
object
have the same random string. - this instance and
object
have the same server name.
-
-