java.lang.Object
simpleorm.dataset.SRecordInstance
com.inductiveautomation.ignition.gateway.localdb.persistence.PersistentRecord
com.inductiveautomation.ignition.gateway.authentication.records.InternalUserRecord
All Implemented Interfaces:
Serializable

@Deprecated(since="8.3.0") public class InternalUserRecord extends PersistentRecord
Deprecated.
As of 8.3.0, use InternalUserResource instead.
See Also:
  • Field Details

    • META

      public static final RecordMeta<InternalUserRecord> META
      Deprecated.
    • UserId

      public static final IdentityField UserId
      Deprecated.
    • ProfileId

      public static final LongField ProfileId
      Deprecated.
    • Profile

      public static final ReferenceField<UserSourceProfileRecord> Profile
      Deprecated.
    • Username

      public static final StringField Username
      Deprecated.
    • FirstName

      public static final StringField FirstName
      Deprecated.
    • LastName

      public static final StringField LastName
      Deprecated.
    • Schedule

      public static final StringField Schedule
      Deprecated.
    • Language

      public static final StringField Language
      Deprecated.
    • Password

      public static final StringField Password
      Deprecated.
    • PasswordDate

      public static final LongField PasswordDate
      Deprecated.
    • PasswordHistory

      public static final StringField PasswordHistory
      Deprecated.
    • Description

      public static final StringField Description
      Deprecated.
    • Badge

      public static final StringField Badge
      Deprecated.
    • Migrated

      public static final BooleanField Migrated
      Deprecated.
    • MigratedUuid

      public static final StringField MigratedUuid
      Deprecated.
  • Constructor Details

    • InternalUserRecord

      public InternalUserRecord()
      Deprecated.
  • Method Details

    • getMeta

      public RecordMeta<?> getMeta()
      Deprecated.
      Description copied from class: SRecordInstance
      This must be defined in every user record's definition to access the SRecord which provides the meta data for this instance. It is normally defined as:-

       SRecord getMeta() {
         return meta;
       };
       

      The actual meta variable is thus not Serialized, but it would not be anyway as it is usually static.

      Specified by:
      getMeta in class PersistentRecord