Skip to main content

HS.Registry.Person.UserPWHistory

persistent class HS.Registry.Person.UserPWHistory extends %Library.Persistent, %XML.Adaptor

SQL Table Name: HS_Registry_Person.UserPWHistory

Property Inventory

Parameters

parameter XMLIGNOREINVALIDTAG = 1;
Inherited description: The XMLIGNOREINVALIDTAG parameter allows the programmer to control handling of unexpected elements in the XML input. The XMLIGNOREINVALIDTAG parameter will only take affect if XMLSEQUENCE = 0 (the default). By default (XMLIGNOREINVALIDTAG = 0), will treat an unexpected element as an error. If XMLIGNOREINVALIDTAG is set = 1 and XMLSEQUENCE = 0, then unexpected elements will be ignored.
parameter XMLIGNORENULL = inputonly;
Inherited description: XMLIGNORENULL allows the programmer to override the default XML handling of empty strings for properties of type %String. By default (XMLIGNORENULL = 0), empty strings in the XML input are stored as $c(0) and $c(0) is written to XML as an empty tag. A missing tag in the XML input is always stored as "" and "" is always output to XML as no tag.

If XMLIGNORENULL is set = 1, then both missing tags in the XML and empty strings are input as "", and both "" and $c(0) are output as empty tags (i.e. <tag></tag>).

If XMLIGNORENULL is set = "inputonly", then both missing tags in the XML and empty strings are input as "". Output of "" and $c(0) are for XMLIGNORENULL = 0: $c(0) is output as an empty tag (i.e. <tag></tag>) and "" is output as no tag.

If XMLIGNORENULL = "runtime" (runtime is not case sensitive), then the behavior of XMLIGNORENULL is determined by the format parameter of XMLExport, XMLImport and %XML.Reader.OpenFile. The default behavior for XMLIGNORENULL="runtime is the same as XMLIGNORENULL=0. Adding "ignorenull" to the format argument changes the behavior to that of XMLIGNORENULL=1. "ignorenull" shoud be separated by a comma from literal/encoded part of the format. Example values for format are "", ",ignorenull", "literal,ignorenull" and "encoded,ignorenull". Note that "inputonly" is equivalent to using ,ignorenull for XMLExport and not for %XML.Reader.

Properties

relationship LoginID as HS.Registry.Person.UserLoginID [ Required , Inverse = PasswordHistory , Cardinality = parent ];
Property methods: LoginIDGet(), LoginIDGetObject(), LoginIDGetObjectId(), LoginIDGetStored(), LoginIDGetSwizzled(), LoginIDIsValid(), LoginIDNewObject(), LoginIDOnDelete(), LoginIDRClose(), LoginIDRExec(), LoginIDRFetch(), LoginIDRelate(), LoginIDSQLCompute(), LoginIDSet(), LoginIDSetObject(), LoginIDSetObjectId(), LoginIDUnRelate(), LoginIDUnSwizzle()
property Password as HS.Registry.Person.UserPassword;
%HS* domains, copied from Security.Users PBKDF2 hashed password for Cache Authentication.
This is used with a salt function obtained from $System.Encryption.GenCryptRand. This property is set by the class when the PasswordExternal property is modified. Do not set this property directly.
Property methods: PasswordGet(), PasswordGetStored(), PasswordIsValid(), PasswordLogicalToDisplay(), PasswordLogicalToOdbc(), PasswordLogicalToXSD(), PasswordSet(), PasswordXSDToLogical()
property PasswordHashAlgorithm as %String;
%HS* domains, copied from Security.Users Algorithrm used to hash password.
Property methods: PasswordHashAlgorithmDisplayToLogical(), PasswordHashAlgorithmGet(), PasswordHashAlgorithmGetStored(), PasswordHashAlgorithmIsValid(), PasswordHashAlgorithmLogicalToDisplay(), PasswordHashAlgorithmLogicalToOdbc(), PasswordHashAlgorithmNormalize(), PasswordHashAlgorithmSet()
property PasswordHashWorkFactor as %Integer;
%HS* domains, copied from Security.Users Work factor used to hash password.
Property methods: PasswordHashWorkFactorDisplayToLogical(), PasswordHashWorkFactorGet(), PasswordHashWorkFactorGetStored(), PasswordHashWorkFactorIsValid(), PasswordHashWorkFactorLogicalToDisplay(), PasswordHashWorkFactorNormalize(), PasswordHashWorkFactorSet(), PasswordHashWorkFactorXSDToLogical()
property Salt as %Binary (MAXLEN = 64);
%HS* domains, copied from Security.Users Salt value for Hashed password from $System.Encryption.GenCryptRand.
Property methods: SaltGet(), SaltGetStored(), SaltIsValid(), SaltLogicalToXSD(), SaltSet(), SaltXSDToLogical()
property WhenEntered as %TimeStamp;
Property methods: WhenEnteredDisplayToLogical(), WhenEnteredGet(), WhenEnteredGetStored(), WhenEnteredIsValid(), WhenEnteredLogicalToDisplay(), WhenEnteredLogicalToXSD(), WhenEnteredNormalize(), WhenEnteredOdbcToLogical(), WhenEnteredSet(), WhenEnteredXSDToLogical()

Indexes

index (IDKEY on ) [IdKey, Type = key];
Index methods: IDKEYCheck(), IDKEYDelete(), IDKEYExists(), IDKEYOpen(), IDKEYSQLCheckUnique(), IDKEYSQLExists(), IDKEYSQLFindPKeyByConstraint(), IDKEYSQLFindRowIDByConstraint()

Inherited Members

Inherited Methods

Storage

Storage Model: Storage (HS.Registry.Person.UserPWHistory)

^HS.RegistryBAF2.UserPWHistoryD(ID)
=
%%CLASSNAME
WhenEntered
Password
Salt
PasswordHashAlgorithm
PasswordHashWorkFactor
FeedbackOpens in a new tab