Uses of Interface
org.springframework.boot.actuate.endpoint.SanitizingFunction
Packages that use SanitizingFunction
Package
Description
Auto-configuration for actuator property concerns.
Auto-configuration for actuator Spring Environment concerns.
Auto-configuration for actuator Quartz Scheduler concerns.
Actuator support relating to external configuration properties.
Endpoint support.
Actuator support for Spring Framework's
Environment
.Actuator support for Quartz Scheduler.
-
Uses of SanitizingFunction in org.springframework.boot.actuate.autoconfigure.context.properties
Method parameters in org.springframework.boot.actuate.autoconfigure.context.properties with type arguments of type SanitizingFunctionModifier and TypeMethodDescriptionConfigurationPropertiesReportEndpointAutoConfiguration.configurationPropertiesReportEndpoint
(ConfigurationPropertiesReportEndpointProperties properties, ObjectProvider<SanitizingFunction> sanitizingFunctions) -
Uses of SanitizingFunction in org.springframework.boot.actuate.autoconfigure.env
Method parameters in org.springframework.boot.actuate.autoconfigure.env with type arguments of type SanitizingFunctionModifier and TypeMethodDescriptionEnvironmentEndpointAutoConfiguration.environmentEndpoint
(Environment environment, EnvironmentEndpointProperties properties, ObjectProvider<SanitizingFunction> sanitizingFunctions) -
Uses of SanitizingFunction in org.springframework.boot.actuate.autoconfigure.quartz
Method parameters in org.springframework.boot.actuate.autoconfigure.quartz with type arguments of type SanitizingFunctionModifier and TypeMethodDescriptionQuartzEndpointAutoConfiguration.quartzEndpoint
(org.quartz.Scheduler scheduler, ObjectProvider<SanitizingFunction> sanitizingFunctions) -
Uses of SanitizingFunction in org.springframework.boot.actuate.context.properties
Constructor parameters in org.springframework.boot.actuate.context.properties with type arguments of type SanitizingFunctionModifierConstructorDescriptionConfigurationPropertiesReportEndpoint
(Iterable<SanitizingFunction> sanitizingFunctions, Show showValues) -
Uses of SanitizingFunction in org.springframework.boot.actuate.endpoint
Methods in org.springframework.boot.actuate.endpoint that return SanitizingFunctionModifier and TypeMethodDescriptiondefault SanitizingFunction
SanitizingFunction.ifKeyContains
(String... values) Return a new function with a filter that also applies if the data key contains any of the given values (ignoring case).default SanitizingFunction
SanitizingFunction.ifKeyEndsWith
(String... suffixes) Return a new function with a filter that also applies if the data key ends with any of the given values (ignoring case).default SanitizingFunction
SanitizingFunction.ifKeyEquals
(String... values) Return a new function with a filter that also applies if the data key is equal to any of the given values (ignoring case).default SanitizingFunction
SanitizingFunction.ifKeyMatches
(String... regexes) Return a new function with a filter that also applies if the data key matches any of the given regex patterns (ignoring case).default SanitizingFunction
SanitizingFunction.ifKeyMatches
(Predicate<String> predicate) Return a new function with a filter that also applies if the data key matches any of the given predicate.default SanitizingFunction
SanitizingFunction.ifKeyMatches
(List<Predicate<String>> predicates) Return a new function with a filter that also applies if the data key matches any of the given predicates.default SanitizingFunction
SanitizingFunction.ifKeyMatches
(Pattern... patterns) Return a new function with a filter that also applies if the data key matches any of the given patterns.default SanitizingFunction
SanitizingFunction.ifKeyMatchesIgnoringCase
(BiPredicate<String, String> predicate, String... values) Return a new function with a filter that also applies if the data key and any of the values match the given predicate.default SanitizingFunction
SanitizingFunction.ifLikelyCredential()
Return a new function with a filter that also applies if the data is likely to contain a credential.default SanitizingFunction
SanitizingFunction.ifLikelySensitive()
Return a new function with a filter that also applies if the data is likely to contain a sensitive value.default SanitizingFunction
SanitizingFunction.ifLikelySensitiveProperty()
Return a new function with a filter that also applies if the data is likely to contain a sensitive property value.default SanitizingFunction
SanitizingFunction.ifLikelyUri()
Return a new function with a filter that also applies if the data is likely to contain a URI.default SanitizingFunction
SanitizingFunction.ifMatches
(Predicate<SanitizableData> predicate) Return a new function with a filter that also applies if the data matches the given predicate.default SanitizingFunction
SanitizingFunction.ifMatches
(List<Predicate<SanitizableData>> predicates) Return a new function with a filter that also applies if the data matches any of the given predicates.default SanitizingFunction
SanitizingFunction.ifValueMatches
(Predicate<Object> predicate) Return a new function with a filter that also applies if the data value matches the given predicate.default SanitizingFunction
SanitizingFunction.ifValueMatches
(List<Predicate<Object>> predicates) Return a new function with a filter that also applies if the data value matches any of the given predicates.default SanitizingFunction
SanitizingFunction.ifValueStringMatches
(String... regexes) Return a new function with a filter that also applies if the data string value matches any of the given regex patterns (ignoring case).default SanitizingFunction
SanitizingFunction.ifValueStringMatches
(Predicate<String> predicate) Return a new function with a filter that also applies if the data string value matches the given predicate.default SanitizingFunction
SanitizingFunction.ifValueStringMatches
(List<Predicate<String>> predicates) Return a new function with a filter that also applies if the data string value matches any of the given predicates.default SanitizingFunction
SanitizingFunction.ifValueStringMatches
(Pattern... patterns) Return a new function with a filter that also applies if the data string value matches any of the given patterns.default SanitizingFunction
SanitizingFunction.ifVcapServices()
Return a new function with a filter that also applies if the data is for VCAP services.static SanitizingFunction
SanitizingFunction.of
(SanitizingFunction sanitizingFunction) Helper method that can be used working with a sanitizingFunction as a lambda.static SanitizingFunction
SanitizingFunction.sanitizeValue()
Factory method to return aSanitizingFunction
that sanitizes the value.Methods in org.springframework.boot.actuate.endpoint with parameters of type SanitizingFunctionModifier and TypeMethodDescriptionstatic SanitizingFunction
SanitizingFunction.of
(SanitizingFunction sanitizingFunction) Helper method that can be used working with a sanitizingFunction as a lambda.Constructor parameters in org.springframework.boot.actuate.endpoint with type arguments of type SanitizingFunctionModifierConstructorDescriptionSanitizer
(Iterable<SanitizingFunction> sanitizingFunctions) Create a newSanitizer
instance with sanitizing functions. -
Uses of SanitizingFunction in org.springframework.boot.actuate.env
Constructor parameters in org.springframework.boot.actuate.env with type arguments of type SanitizingFunctionModifierConstructorDescriptionEnvironmentEndpoint
(Environment environment, Iterable<SanitizingFunction> sanitizingFunctions, Show showValues) -
Uses of SanitizingFunction in org.springframework.boot.actuate.quartz
Constructor parameters in org.springframework.boot.actuate.quartz with type arguments of type SanitizingFunctionModifierConstructorDescriptionQuartzEndpoint
(org.quartz.Scheduler scheduler, Iterable<SanitizingFunction> sanitizingFunctions)