Uses of Class
org.springframework.boot.actuate.endpoint.SanitizableData
Packages that use SanitizableData
-
Uses of SanitizableData in org.springframework.boot.actuate.endpoint
Methods in org.springframework.boot.actuate.endpoint that return SanitizableDataModifier and TypeMethodDescriptionSanitizingFunction.apply
(SanitizableData data) Apply the sanitizing function to the given data.default SanitizableData
SanitizingFunction.applyUnlessFiltered
(SanitizableData data) Apply the sanitizing function as long as the filter passes or there is no filter.SanitizableData.withSanitizedValue()
Return a newSanitizableData
instance with sanitized value.Return a newSanitizableData
instance with a different value.Methods in org.springframework.boot.actuate.endpoint that return types with arguments of type SanitizableDataModifier and TypeMethodDescriptiondefault Predicate
<SanitizableData> SanitizingFunction.filter()
Return an optional filter that determines if the sanitizing function applies.Methods in org.springframework.boot.actuate.endpoint with parameters of type SanitizableDataModifier and TypeMethodDescriptionSanitizingFunction.apply
(SanitizableData data) Apply the sanitizing function to the given data.default SanitizableData
SanitizingFunction.applyUnlessFiltered
(SanitizableData data) Apply the sanitizing function as long as the filter passes or there is no filter.Sanitizer.sanitize
(SanitizableData data, boolean showUnsanitized) Sanitize the value from the givenSanitizableData
using the availableSanitizingFunction
s.Method parameters in org.springframework.boot.actuate.endpoint with type arguments of type SanitizableDataModifier and TypeMethodDescriptiondefault 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.