Class AllowListConfig.BuilderBase<BUILDER extends AllowListConfig.BuilderBase<BUILDER,PROTOTYPE>,PROTOTYPE extends AllowListConfig>

java.lang.Object
io.helidon.common.configurable.AllowListConfig.BuilderBase<BUILDER,PROTOTYPE>
Type Parameters:
BUILDER - type of the builder extending this abstract builder
PROTOTYPE - type of the prototype interface that would be built by Prototype.Builder.buildPrototype()
All Implemented Interfaces:
Prototype.Builder<BUILDER,PROTOTYPE>, ConfigBuilderSupport.ConfiguredBuilder<BUILDER,PROTOTYPE>
Direct Known Subclasses:
AllowListConfig.Builder
Enclosing interface:
AllowListConfig

public abstract static class AllowListConfig.BuilderBase<BUILDER extends AllowListConfig.BuilderBase<BUILDER,PROTOTYPE>,PROTOTYPE extends AllowListConfig> extends Object implements ConfigBuilderSupport.ConfiguredBuilder<BUILDER,PROTOTYPE>
Fluent API builder base for AllowList.
  • Constructor Details Link icon

    • BuilderBase Link icon

      protected BuilderBase()
      Protected to support extensibility.
  • Method Details Link icon

    • from Link icon

      public BUILDER from(AllowListConfig prototype)
      Update this builder from an existing prototype instance. This method disables automatic service discovery.
      Parameters:
      prototype - existing prototype to update this builder from
      Returns:
      updated builder instance
    • from Link icon

      public BUILDER from(AllowListConfig.BuilderBase<?,?> builder)
      Update this builder from an existing prototype builder instance.
      Parameters:
      builder - existing builder prototype to update this builder from
      Returns:
      updated builder instance
    • config Link icon

      public BUILDER config(Config config)
      Update builder from configuration (node of this type). If a value is present in configuration, it would override currently configured values.
      Specified by:
      config in interface ConfigBuilderSupport.ConfiguredBuilder<BUILDER extends AllowListConfig.BuilderBase<BUILDER,PROTOTYPE>,PROTOTYPE extends AllowListConfig>
      Parameters:
      config - configuration instance used to obtain values to update this builder
      Returns:
      updated builder instance
    • allowAll Link icon

      public BUILDER allowAll(boolean allowAll)
      Allows all strings to match (subject to "deny" conditions). An allow.all setting of false does not deny all strings but rather represents the absence of a universal match, meaning that other allow and deny settings determine the matching outcomes.
      Parameters:
      allowAll - whether to allow all strings to match (subject to "deny" conditions)
      Returns:
      updated builder instance
      See Also:
    • allowed Link icon

      public BUILDER allowed(List<String> allowed)
      Exact strings to allow.
      Parameters:
      allowed - exact strings to allow
      Returns:
      updated builder instance
      See Also:
    • addAllowed Link icon

      public BUILDER addAllowed(List<String> allowed)
      Exact strings to allow.
      Parameters:
      allowed - exact strings to allow
      Returns:
      updated builder instance
      See Also:
    • addAllowed Link icon

      public BUILDER addAllowed(String allowed)
      Exact strings to allow.
      Parameters:
      allowed - exact strings to allow
      Returns:
      updated builder instance
      See Also:
    • allowedPrefixes Link icon

      public BUILDER allowedPrefixes(List<String> allowedPrefixes)
      Prefixes specifying strings to allow.
      Parameters:
      allowedPrefixes - prefixes which allow matching
      Returns:
      updated builder instance
      See Also:
    • addAllowedPrefixes Link icon

      public BUILDER addAllowedPrefixes(List<String> allowedPrefixes)
      Prefixes specifying strings to allow.
      Parameters:
      allowedPrefixes - prefixes which allow matching
      Returns:
      updated builder instance
      See Also:
    • addAllowedPrefix Link icon

      public BUILDER addAllowedPrefix(String allowedPrefix)
      Prefixes specifying strings to allow.
      Parameters:
      allowedPrefix - prefixes which allow matching
      Returns:
      updated builder instance
      See Also:
    • allowedSuffixes Link icon

      public BUILDER allowedSuffixes(List<String> allowedSuffixes)
      Suffixes specifying strings to allow.
      Parameters:
      allowedSuffixes - suffixes which allow matching
      Returns:
      updated builder instance
      See Also:
    • addAllowedSuffixes Link icon

      public BUILDER addAllowedSuffixes(List<String> allowedSuffixes)
      Suffixes specifying strings to allow.
      Parameters:
      allowedSuffixes - suffixes which allow matching
      Returns:
      updated builder instance
      See Also:
    • addAllowedSuffix Link icon

      public BUILDER addAllowedSuffix(String allowedSuffix)
      Suffixes specifying strings to allow.
      Parameters:
      allowedSuffix - suffixes which allow matching
      Returns:
      updated builder instance
      See Also:
    • allowedPatterns Link icon

      public BUILDER allowedPatterns(List<? extends Pattern> allowedPatterns)
      Patterns specifying strings to allow.
      Parameters:
      allowedPatterns - patterns which allow matching
      Returns:
      updated builder instance
      See Also:
    • addAllowedPatterns Link icon

      public BUILDER addAllowedPatterns(List<? extends Pattern> allowedPatterns)
      Patterns specifying strings to allow.
      Parameters:
      allowedPatterns - patterns which allow matching
      Returns:
      updated builder instance
      See Also:
    • addAllowedPattern Link icon

      public BUILDER addAllowedPattern(Pattern allowedPattern)
      Patterns specifying strings to allow.
      Parameters:
      allowedPattern - patterns which allow matching
      Returns:
      updated builder instance
      See Also:
    • denied Link icon

      public BUILDER denied(List<String> denied)
      Exact strings to deny.
      Parameters:
      denied - exact strings to deny
      Returns:
      updated builder instance
      See Also:
    • addDenied Link icon

      public BUILDER addDenied(List<String> denied)
      Exact strings to deny.
      Parameters:
      denied - exact strings to deny
      Returns:
      updated builder instance
      See Also:
    • addDenied Link icon

      public BUILDER addDenied(String denied)
      Exact strings to deny.
      Parameters:
      denied - exact strings to deny
      Returns:
      updated builder instance
      See Also:
    • deniedPrefixes Link icon

      public BUILDER deniedPrefixes(List<String> deniedPrefixes)
      Prefixes specifying strings to deny.
      Parameters:
      deniedPrefixes - prefixes which deny matching
      Returns:
      updated builder instance
      See Also:
    • addDeniedPrefixes Link icon

      public BUILDER addDeniedPrefixes(List<String> deniedPrefixes)
      Prefixes specifying strings to deny.
      Parameters:
      deniedPrefixes - prefixes which deny matching
      Returns:
      updated builder instance
      See Also:
    • addDeniedPrefix Link icon

      public BUILDER addDeniedPrefix(String deniedPrefix)
      Prefixes specifying strings to deny.
      Parameters:
      deniedPrefix - prefixes which deny matching
      Returns:
      updated builder instance
      See Also:
    • deniedSuffixes Link icon

      public BUILDER deniedSuffixes(List<String> deniedSuffixes)
      Suffixes specifying strings to deny.
      Parameters:
      deniedSuffixes - suffixes which deny matching
      Returns:
      updated builder instance
      See Also:
    • addDeniedSuffixes Link icon

      public BUILDER addDeniedSuffixes(List<String> deniedSuffixes)
      Suffixes specifying strings to deny.
      Parameters:
      deniedSuffixes - suffixes which deny matching
      Returns:
      updated builder instance
      See Also:
    • addDeniedSuffix Link icon

      public BUILDER addDeniedSuffix(String deniedSuffix)
      Suffixes specifying strings to deny.
      Parameters:
      deniedSuffix - suffixes which deny matching
      Returns:
      updated builder instance
      See Also:
    • deniedPatterns Link icon

      public BUILDER deniedPatterns(List<? extends Pattern> deniedPatterns)
      Patterns specifying strings to deny.
      Parameters:
      deniedPatterns - patterns which deny matching
      Returns:
      updated builder instance
      See Also:
    • addDeniedPatterns Link icon

      public BUILDER addDeniedPatterns(List<? extends Pattern> deniedPatterns)
      Patterns specifying strings to deny.
      Parameters:
      deniedPatterns - patterns which deny matching
      Returns:
      updated builder instance
      See Also:
    • addDeniedPattern Link icon

      public BUILDER addDeniedPattern(Pattern deniedPattern)
      Patterns specifying strings to deny.
      Parameters:
      deniedPattern - patterns which deny matching
      Returns:
      updated builder instance
      See Also:
    • allowedPredicates Link icon

      public BUILDER allowedPredicates(List<Predicate<String>> allowedPredicates)
      Allowed predicates.
      Parameters:
      allowedPredicates - predicates to allow
      Returns:
      updated builder instance
      See Also:
    • addAllowedPredicates Link icon

      public BUILDER addAllowedPredicates(List<Predicate<String>> allowedPredicates)
      Allowed predicates.
      Parameters:
      allowedPredicates - predicates to allow
      Returns:
      updated builder instance
      See Also:
    • addAllowed Link icon

      public BUILDER addAllowed(Predicate<String> allowed)
      Allowed predicates.
      Parameters:
      allowed - predicates to allow
      Returns:
      updated builder instance
      See Also:
    • deniedPredicates Link icon

      public BUILDER deniedPredicates(List<Predicate<String>> deniedPredicates)
      Deny predicates.
      Parameters:
      deniedPredicates - predicates to deny
      Returns:
      updated builder instance
      See Also:
    • addDeniedPredicates Link icon

      public BUILDER addDeniedPredicates(List<Predicate<String>> deniedPredicates)
      Deny predicates.
      Parameters:
      deniedPredicates - predicates to deny
      Returns:
      updated builder instance
      See Also:
    • addDenied Link icon

      public BUILDER addDenied(Predicate<String> denied)
      Deny predicates.
      Parameters:
      denied - predicates to deny
      Returns:
      updated builder instance
      See Also:
    • allowAll Link icon

      public boolean allowAll()
      Allows all strings to match (subject to "deny" conditions). An allow.all setting of false does not deny all strings but rather represents the absence of a universal match, meaning that other allow and deny settings determine the matching outcomes.
      Returns:
      the allow all
    • allowed Link icon

      public List<String> allowed()
      Exact strings to allow.
      Returns:
      the allowed
    • allowedPrefixes Link icon

      public List<String> allowedPrefixes()
      Prefixes specifying strings to allow.
      Returns:
      the allowed prefixes
    • allowedSuffixes Link icon

      public List<String> allowedSuffixes()
      Suffixes specifying strings to allow.
      Returns:
      the allowed suffixes
    • allowedPatterns Link icon

      public List<Pattern> allowedPatterns()
      Patterns specifying strings to allow.
      Returns:
      the allowed patterns
    • denied Link icon

      public List<String> denied()
      Exact strings to deny.
      Returns:
      the denied
    • deniedPrefixes Link icon

      public List<String> deniedPrefixes()
      Prefixes specifying strings to deny.
      Returns:
      the denied prefixes
    • deniedSuffixes Link icon

      public List<String> deniedSuffixes()
      Suffixes specifying strings to deny.
      Returns:
      the denied suffixes
    • deniedPatterns Link icon

      public List<Pattern> deniedPatterns()
      Patterns specifying strings to deny.
      Returns:
      the denied patterns
    • allowedPredicates Link icon

      public List<Predicate<String>> allowedPredicates()
      Allowed predicates.
      Returns:
      the allowed predicates
    • deniedPredicates Link icon

      public List<Predicate<String>> deniedPredicates()
      Deny predicates.
      Returns:
      the denied predicates
    • config Link icon

      public Optional<Config> config()
      If this instance was configured, this would be the config instance used.
      Returns:
      config node used to configure this builder, or empty if not configured
    • toString Link icon

      public String toString()
      Overrides:
      toString in class Object
    • preBuildPrototype Link icon

      protected void preBuildPrototype()
      Handles providers and decorators.
    • validatePrototype Link icon

      protected void validatePrototype()
      Validates required properties.