Enum CompositeProviderFlag

    • Enum Constant Detail

      • MAY_FAIL

        public static final CompositeProviderFlag MAY_FAIL
        Provider may fail, nothing happens if it does.

        If succeeds, continues to the next provider. To create a provider that may fail, yet that is sufficient, please configure the flag to be SUFFICIENT, and set the provider itself to be optional (most Helidon providers support optional configuration option), so the provider abstains instead of fails when user cannot be authenticated using it.

      • SUFFICIENT

        public static final CompositeProviderFlag SUFFICIENT
        If succeeds, no further providers are called, otherwise same as optional.

        To create a provider that may fail, yet that is sufficient, use this flag, and set the provider itself to be optional (most Helidon providers support optional configuration option), so the provider abstains instead of fails when user cannot be authenticated using it.

      • OPTIONAL

        public static final CompositeProviderFlag OPTIONAL
        Provider may succeed or abstain. If fails, no further providers are called and request fails.
      • REQUIRED

        public static final CompositeProviderFlag REQUIRED
        Provider must succeed if called (if sufficient is before required, required is still ignored).
      • FORBIDDEN

        public static final CompositeProviderFlag FORBIDDEN
        Provider must not be successful for this request (e.g. either it does not apply to this request, or it fails)
    • Method Detail

      • values

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

        public static CompositeProviderFlag 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
      • isValid

        public boolean isValid​(SecurityResponse.SecurityStatus status)
        Check whether the status is valid for this flag.
        Parameters:
        status - status as returned by a provider
        Returns:
        true if the status is supported by this flag and the processing should continue