Uses of Class
io.helidon.common.configurable.AllowList.Builder
Packages that use AllowList.Builder
-
Uses of AllowList.Builder in io.helidon.common.configurable
Methods in io.helidon.common.configurable that return AllowList.BuilderModifier and TypeMethodDescriptionAllowList.Builder.addAllowed(String exact) Adds an exact string to allow.AllowList.Builder.addAllowed(Predicate<String> predicate) Adds a predicate specifying strings to allow.AllowList.Builder.addAllowedPattern(Pattern pattern) Adds aPatternspecifying strings to allow.AllowList.Builder.addAllowedPrefix(String prefix) Adds a prefix specifying strings to allow.AllowList.Builder.addAllowedSuffix(String suffix) Adds a suffix specifying strings to allow.Adds an exact string to deny.Adds a predicate which specifies strings to deny.AllowList.Builder.addDeniedPattern(Pattern pattern) Adds aPatternwhich specifies strings to deny.AllowList.Builder.addDeniedPrefix(String prefix) Adds a prefix which specifies strings to deny.AllowList.Builder.addDeniedSuffix(String suffix) Adds a suffix which specifies strings to deny.AllowList.Builder.allowAll(boolean value) Allows all strings to match (subject to "deny" conditions).Exact strings to allow.AllowList.Builder.allowedPatterns(List<Pattern> patterns) Patterns specifying strings to allow.AllowList.Builder.allowedPrefixes(List<String> prefixes) Prefixes specifying strings to allow.AllowList.Builder.allowedSuffixes(List<String> suffixes) Suffixes specifying strings to allow.static AllowList.BuilderAllowList.builder()Create a fluent API builder to configure an instance.Update builder from configuration.Exact strings to deny.AllowList.Builder.deniedPatterns(List<Pattern> patterns) Patterns specifying strings to deny.AllowList.Builder.deniedPrefixes(List<String> prefixes) Prefixes specifying strings to deny.AllowList.Builder.deniedSuffixes(List<String> suffixes) Suffixes specifying strings to deny.