Class UserSourceProfileRecord

All Implemented Interfaces:
Serializable

@Deprecated(since="8.3") public class UserSourceProfileRecord extends PersistentRecord
Deprecated.
As of 8.3, use UserSourceProfileConfig instead.
See Also:
  • Field Details

    • META

      public static final RecordMeta<UserSourceProfileRecord> META
      Deprecated.
    • Id

      public static final IdentityField Id
      Deprecated.
    • Name

      public static final StringField Name
      Deprecated.
    • Type

      public static final StringField Type
      Deprecated.
    • Description

      public static final StringField Description
      Deprecated.
    • Enabled

      public static final BooleanField Enabled
      Deprecated.
    • ScheduleRestricted

      public static final BooleanField ScheduleRestricted
      Deprecated.
    • FailoverProfileId

      public static final LongField FailoverProfileId
      Deprecated.
    • FailoverProfile

      public static final ReferenceField<UserSourceProfileRecord> FailoverProfile
      Deprecated.
    • FailoverMode

      public static final EnumField<AuthenticatorFailoverMode> FailoverMode
      Deprecated.
    • CacheValidationTimeout

      public static final LongField CacheValidationTimeout
      Deprecated.
    • LockoutEnabled

      public static final BooleanField LockoutEnabled
      Deprecated.
      Whether or not lockout is enabled
    • LockoutAttempts

      public static final LongField LockoutAttempts
      Deprecated.
      Maximum number of invalid login attempts allowed within the lockout window before locking out the user
    • LockoutWindow

      public static final LongField LockoutWindow
      Deprecated.
      Duration of the lockout window in minutes
    • Migrated

      public static final BooleanField Migrated
      Deprecated.
  • Constructor Details

    • UserSourceProfileRecord

      public UserSourceProfileRecord()
      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