Interface SSOTokenID


  • @SupportedAll
    public interface SSOTokenID
    The SSOTokenID 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 the SSOTokenID is unique on a given server.
    See Also:
    SSOToken
    • Method Detail

      • toString

        String toString()
        Returns the encrypted Single Sign On token string.
        Overrides:
        toString in class Object
        Returns:
        An encrypted Single Sign On token string
      • equals

        boolean equals​(Object object)
        Returns true if current object is equals to object. This are the conditions
        • object is not null
        • this instance and object have the same random string.
        • this instance and object have the same server name.
        Overrides:
        equals in class Object
        Parameters:
        object - Object for comparison.
        Returns:
        true if current object is equals to object.
      • hashCode

        int hashCode()
        Returns a hash code for this object.
        Overrides:
        hashCode in class Object
        Returns:
        a hash code value for this object.