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 which, if matched, allows matching for a candidate string.AllowList.Builder.addAllowed
(Predicate<String> predicate) Adds a predicate which, if matched, allows matching for a candidate string.AllowList.Builder.addAllowedPattern
(Pattern pattern) Adds aPattern
which, if matched, allows matching for a candidate string.AllowList.Builder.addAllowedPrefix
(String prefix) Adds a prefix which, if matched, allows matching for a candidate string.AllowList.Builder.addAllowedSuffix
(String suffix) Adds a suffix which, if matched, allows matching for a candidate string.Adds an exact string which, if matched, denies matching for a candidate string.Adds a predicate which, if matched, denies matching for a candidate string.AllowList.Builder.addDeniedPattern
(Pattern pattern) Adds aPattern
which, if matched, denies matching for a candidate string.AllowList.Builder.addDeniedPrefix
(String prefix) Adds a prefix which, if matched, denies matching for a candidate string.AllowList.Builder.addDeniedSuffix
(String suffix) Adds a suffix which, if matched, denies matching for a candidate string.AllowList.Builder.allowAll
(boolean value) Allows all strings to match (subject to "deny" conditions).Adds a list of exact strings any of which, if matched, allows matching for a candidate string.AllowList.Builder.allowedPatterns
(List<Pattern> patterns) Adds a list ofPattern
any of which, if matched, allows matching for a candidate string.AllowList.Builder.allowedPrefixes
(List<String> prefixes) Adds a list of prefixes any of which, if matched, allows matching for a candidate string.AllowList.Builder.allowedSuffixes
(List<String> suffixes) Adds a list of suffixes any of which, if matched, allows matching for a candidate string.static AllowList.Builder
AllowList.builder()
Create a fluent API builder to configure an instance.Update builder from configuration.Adds exact strings a match by any of which denies matching for a candidate string.AllowList.Builder.deniedPatterns
(List<Pattern> patterns) Adds patterns a match by any of which denies matching for a candidate string.AllowList.Builder.deniedPrefixes
(List<String> prefixes) Adds prefixes a match by any of which denies matching for a candidate string.AllowList.Builder.deniedSuffixes
(List<String> suffixes) Adds suffixes a match by any of which denies matching for a candidate string.