Class UsernamePasswordCredentials

    • Method Summary

      All Methods Instance Methods Concrete Methods Deprecated Methods 
      Modifier and Type Method Description
      boolean equals​(java.lang.Object o)
      These credentials are assumed equal if the username and password are the same.
      java.lang.String getPassword()
      Password property getter.
      java.lang.String getUserName()
      User name property getter.
      int hashCode()
      Does a hash of both user name and password.
      void setPassword​(java.lang.String password)
      Deprecated.
      Do not use.
      void setUserName​(java.lang.String userName)
      Deprecated.
      Do not use.
      java.lang.String toString()
      Get this object string.
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • UsernamePasswordCredentials

        public UsernamePasswordCredentials()
        Deprecated.
        Do not use. Null user name no longer allowed
        Default constructor.
      • UsernamePasswordCredentials

        public UsernamePasswordCredentials​(java.lang.String usernamePassword)
        The constructor with the username and password combined string argument.
        Parameters:
        usernamePassword - the username:password formed string
        See Also:
        toString()
      • UsernamePasswordCredentials

        public UsernamePasswordCredentials​(java.lang.String userName,
                                           java.lang.String password)
        The constructor with the username and password arguments.
        Parameters:
        userName - the user name
        password - the password
    • Method Detail

      • setUserName

        public void setUserName​(java.lang.String userName)
        Deprecated.
        Do not use. The UsernamePasswordCredentials objects should be immutable
        User name property setter. User name may not be null.
        Parameters:
        userName -
        See Also:
        getUserName()
      • getUserName

        public java.lang.String getUserName()
        User name property getter.
        Returns:
        the userName
        See Also:
        setUserName(String)
      • setPassword

        public void setPassword​(java.lang.String password)
        Deprecated.
        Do not use. The UsernamePasswordCredentials objects should be immutable
        Password property setter.
        Parameters:
        password -
        See Also:
        getPassword()
      • getPassword

        public java.lang.String getPassword()
        Password property getter.
        Returns:
        the password
        See Also:
        setPassword(String)
      • toString

        public java.lang.String toString()
        Get this object string.
        Overrides:
        toString in class java.lang.Object
        Returns:
        the username:password formed string
      • hashCode

        public int hashCode()
        Does a hash of both user name and password.
        Overrides:
        hashCode in class java.lang.Object
        Returns:
        The hash code including user name and password.
      • equals

        public boolean equals​(java.lang.Object o)
        These credentials are assumed equal if the username and password are the same.
        Overrides:
        equals in class java.lang.Object
        Parameters:
        o - The other object to compare with.
        Returns:
        true if the object is equivalent.