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 SanitizingFunctionSanitizingFunction.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 SanitizingFunctionSanitizingFunction.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 SanitizingFunctionSanitizingFunction.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 SanitizingFunctionSanitizingFunction.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 SanitizingFunctionSanitizingFunction.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 SanitizingFunctionSanitizingFunction.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 SanitizingFunctionSanitizingFunction.ifKeyMatches(Pattern... patterns) Return a new function with a filter that also applies if the data key matches any of the given patterns.default SanitizingFunctionSanitizingFunction.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 SanitizingFunctionSanitizingFunction.ifLikelyCredential()Return a new function with a filter that also applies if the data is likely to contain a credential.default SanitizingFunctionSanitizingFunction.ifLikelySensitive()Return a new function with a filter that also applies if the data is likely to contain a sensitive value.default SanitizingFunctionSanitizingFunction.ifLikelySensitiveProperty()Return a new function with a filter that also applies if the data is likely to contain a sensitive property value.default SanitizingFunctionSanitizingFunction.ifLikelyUri()Return a new function with a filter that also applies if the data is likely to contain a URI.default SanitizingFunctionSanitizingFunction.ifMatches(Predicate<SanitizableData> predicate) Return a new function with a filter that also applies if the data matches the given predicate.default SanitizingFunctionSanitizingFunction.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 SanitizingFunctionSanitizingFunction.ifValueMatches(Predicate<Object> predicate) Return a new function with a filter that also applies if the data value matches the given predicate.default SanitizingFunctionSanitizingFunction.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 SanitizingFunctionSanitizingFunction.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 SanitizingFunctionSanitizingFunction.ifValueStringMatches(Predicate<String> predicate) Return a new function with a filter that also applies if the data string value matches the given predicate.default SanitizingFunctionSanitizingFunction.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 SanitizingFunctionSanitizingFunction.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 SanitizingFunctionSanitizingFunction.ifVcapServices()Return a new function with a filter that also applies if the data is for VCAP services.static SanitizingFunctionSanitizingFunction.of(SanitizingFunction sanitizingFunction) Helper method that can be used working with a sanitizingFunction as a lambda.static SanitizingFunctionSanitizingFunction.sanitizeValue()Factory method to return aSanitizingFunctionthat sanitizes the value.Methods in org.springframework.boot.actuate.endpoint with parameters of type SanitizingFunctionModifier and TypeMethodDescriptionstatic SanitizingFunctionSanitizingFunction.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 newSanitizerinstance 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)