Enum ResourceType

    • Enum Constant Detail

      • REALM_ROLE_MAPPING

        public static final ResourceType REALM_ROLE_MAPPING
      • REALM_SCOPE_MAPPING

        public static final ResourceType REALM_SCOPE_MAPPING
      • AUTH_EXECUTION_FLOW

        public static final ResourceType AUTH_EXECUTION_FLOW
      • AUTH_EXECUTION

        public static final ResourceType AUTH_EXECUTION
      • AUTHENTICATOR_CONFIG

        public static final ResourceType AUTHENTICATOR_CONFIG
      • REQUIRED_ACTION

        public static final ResourceType REQUIRED_ACTION
      • IDENTITY_PROVIDER

        public static final ResourceType IDENTITY_PROVIDER
      • IDENTITY_PROVIDER_MAPPER

        public static final ResourceType IDENTITY_PROVIDER_MAPPER
      • PROTOCOL_MAPPER

        public static final ResourceType PROTOCOL_MAPPER
      • USER_LOGIN_FAILURE

        public static final ResourceType USER_LOGIN_FAILURE
      • USER_SESSION

        public static final ResourceType USER_SESSION
      • USER_FEDERATION_PROVIDER

        public static final ResourceType USER_FEDERATION_PROVIDER
      • USER_FEDERATION_MAPPER

        public static final ResourceType USER_FEDERATION_MAPPER
      • GROUP_MEMBERSHIP

        public static final ResourceType GROUP_MEMBERSHIP
      • CLIENT_INITIAL_ACCESS_MODEL

        public static final ResourceType CLIENT_INITIAL_ACCESS_MODEL
      • CLIENT_ROLE_MAPPING

        public static final ResourceType CLIENT_ROLE_MAPPING
      • CLIENT_SCOPE

        public static final ResourceType CLIENT_SCOPE
      • CLIENT_SCOPE_MAPPING

        public static final ResourceType CLIENT_SCOPE_MAPPING
      • CLIENT_SCOPE_CLIENT_MAPPING

        public static final ResourceType CLIENT_SCOPE_CLIENT_MAPPING
      • CLUSTER_NODE

        public static final ResourceType CLUSTER_NODE
      • AUTHORIZATION_RESOURCE_SERVER

        public static final ResourceType AUTHORIZATION_RESOURCE_SERVER
      • AUTHORIZATION_RESOURCE

        public static final ResourceType AUTHORIZATION_RESOURCE
      • AUTHORIZATION_SCOPE

        public static final ResourceType AUTHORIZATION_SCOPE
      • AUTHORIZATION_POLICY

        public static final ResourceType AUTHORIZATION_POLICY
    • Method Detail

      • values

        public static ResourceType[] 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 (ResourceType c : ResourceType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static ResourceType valueOf​(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:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null