接口的使用
org.springframework.boot.actuate.endpoint.SanitizingFunction
使用SanitizingFunction的程序包
程序包
说明
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.
-
org.springframework.boot.actuate.autoconfigure.context.properties中SanitizingFunction的使用
修饰符和类型方法说明ConfigurationPropertiesReportEndpointAutoConfiguration.configurationPropertiesReportEndpoint
(ConfigurationPropertiesReportEndpointProperties properties, ObjectProvider<SanitizingFunction> sanitizingFunctions) -
org.springframework.boot.actuate.autoconfigure.env中SanitizingFunction的使用
修饰符和类型方法说明EnvironmentEndpointAutoConfiguration.environmentEndpoint
(Environment environment, EnvironmentEndpointProperties properties, ObjectProvider<SanitizingFunction> sanitizingFunctions) -
org.springframework.boot.actuate.autoconfigure.quartz中SanitizingFunction的使用
修饰符和类型方法说明QuartzEndpointAutoConfiguration.quartzEndpoint
(org.quartz.Scheduler scheduler, ObjectProvider<SanitizingFunction> sanitizingFunctions) -
org.springframework.boot.actuate.context.properties中SanitizingFunction的使用
限定符构造器说明ConfigurationPropertiesReportEndpoint
(Iterable<SanitizingFunction> sanitizingFunctions, Show showValues) -
org.springframework.boot.actuate.endpoint中SanitizingFunction的使用
修饰符和类型方法说明default 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.修饰符和类型方法说明static SanitizingFunction
SanitizingFunction.of
(SanitizingFunction sanitizingFunction) Helper method that can be used working with a sanitizingFunction as a lambda.类型变量类型为SanitizingFunction的org.springframework.boot.actuate.endpoint中的构造器参数限定符构造器说明Sanitizer
(Iterable<SanitizingFunction> sanitizingFunctions) Create a newSanitizer
instance with sanitizing functions. -
org.springframework.boot.actuate.env中SanitizingFunction的使用
类型变量类型为SanitizingFunction的org.springframework.boot.actuate.env中的构造器参数限定符构造器说明EnvironmentEndpoint
(Environment environment, Iterable<SanitizingFunction> sanitizingFunctions, Show showValues) -
org.springframework.boot.actuate.quartz中SanitizingFunction的使用
类型变量类型为SanitizingFunction的org.springframework.boot.actuate.quartz中的构造器参数限定符构造器说明QuartzEndpoint
(org.quartz.Scheduler scheduler, Iterable<SanitizingFunction> sanitizingFunctions)