接口的使用
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 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.修饰符和类型方法说明static SanitizingFunctionSanitizingFunction.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 newSanitizerinstance 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)