Class BasicIdentity

java.lang.Object
oracle.stellent.ridc.auth.impl.BasicIdentity
All Implemented Interfaces:
Principal, Identity

@Concealed public class BasicIdentity extends Object implements Identity
A simple identity that associates a username with some web credentials
  • Constructor Details

    • BasicIdentity

      public BasicIdentity(String name)
      Build identity with no associated credentials
      Parameters:
      name - the identity name
    • BasicIdentity

      public BasicIdentity(Credentials.BasicCredentials credentials)
      Build an identity using only basic credentials. Gets the username from the basic credentials object.
      Parameters:
      credentials - the basic credentials.
    • BasicIdentity

      public BasicIdentity(String name, Credentials credentials)
      Associate a user with some credentials
      Parameters:
      name - the user name
      credentials - the credentials
    • BasicIdentity

      @Deprecated public BasicIdentity(String name, String password)
      Deprecated.
      Associate a user ID with a basic password credential
      Parameters:
      name - the user name
      password - the user password
    • BasicIdentity

      public BasicIdentity(String name, char[] password)
      Associate a user ID with a basic password credential
      Parameters:
      name - the user name
      password - the user password
  • Method Details

    • setName

      public void setName(String name)
    • setCredentials

      public void setCredentials(Credentials credentials)
    • getCredentials

      public Credentials getCredentials()
      Specified by:
      getCredentials in interface Identity
      Returns:
      the credentials to use for web requests
    • getName

      public String getName()
      Returns the name of this principal.
      Specified by:
      getName in interface Principal
      Returns:
      the name of this principal.