com.ibm.security.access.mobile.authentication

Enum RegistrationAttributes

  • java.lang.Object
  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<RegistrationAttributes>


    public enum RegistrationAttributes
    extends java.lang.Enum<RegistrationAttributes>
    The enumerated type that provides constant values of the registration attributes.
    Since:
    1.2.0
    Version:
    1.2.8
    • Enum Constant Detail

      • DEVICE_IDENTIFIER

        public static final RegistrationAttributes DEVICE_IDENTIFIER
        The uniquely identifier of the device to the app's vendor.
      • OS_VERSION

        public static final RegistrationAttributes OS_VERSION
        The version number of the operation system.
      • FINGERPRINT_SUPPORT

        public static final RegistrationAttributes FINGERPRINT_SUPPORT
        The flag to indicate if the device supports Fingerprint Manager.
      • FINGERPRINT_ENROLLED

        public static final RegistrationAttributes FINGERPRINT_ENROLLED
        The flag to indicate the Fingerprint Manager has been enrolled.
      • FRONTCAMERA_SUPPORT

        public static final RegistrationAttributes FRONTCAMERA_SUPPORT
        The flag to indicate if the device has a front facing camera.
      • PUSH_NOTIFICATION_IDENTIFIER

        public static final RegistrationAttributes PUSH_NOTIFICATION_IDENTIFIER
        The unique identifier of the device for supporting push notification.
      • APPLICATION_IDENTIFIER

        public static final RegistrationAttributes APPLICATION_IDENTIFIER
        The bundler identifier of the application.
      • TENANT_IDENTIFIER

        public static final RegistrationAttributes TENANT_IDENTIFIER
        A client generated unique identifier to represent the tenant.
    • Method Detail

      • values

        public static RegistrationAttributes[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (RegistrationAttributes c : RegistrationAttributes.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static RegistrationAttributes valueOf(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • getAttributeValue

        public static java.lang.Object getAttributeValue(android.content.Context context,
                                                         RegistrationAttributes attribute)
      • getAllAttributeValues

        public static java.util.HashMap<java.lang.String,java.lang.Object> getAllAttributeValues(android.content.Context context)
      • toString

        public java.lang.String toString()
        Returns the value of the Enum.
        Overrides:
        toString in class java.lang.Enum<RegistrationAttributes>
        Returns:
        the value of the enum
        Since:
        1.2.5