Class UserDescriptor

java.lang.Object
org.apache.derby.iapi.sql.dictionary.TupleDescriptor
org.apache.derby.iapi.sql.dictionary.UserDescriptor

public final class UserDescriptor extends TupleDescriptor
A Descriptor for a user stored in SYSUSERS.
  • Field Details

    • _userName

      private String _userName
    • _hashingScheme

      private String _hashingScheme
    • _password

      private char[] _password
    • _lastModified

      private Timestamp _lastModified
  • Constructor Details

    • UserDescriptor

      UserDescriptor(DataDictionary dataDictionary, String userName, String hashingScheme, char[] password, Timestamp lastModified)
      Constructor for a UserDescriptor.
      Parameters:
      dataDictionary - The data dictionary that this descriptor lives in.
      userName - Name of the user.
      hashingScheme - How the password was hashed.
      password - The user's password.
      lastModified - Time that the password was last modified.
  • Method Details