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 SanitizableDataSanitizingFunction.applyUnlessFiltered(SanitizableData data) Apply the sanitizing function as long as the filter passes or there is no filter.SanitizableData.withSanitizedValue()Return a newSanitizableDatainstance with sanitized value.Return a newSanitizableDatainstance 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 SanitizableDataSanitizingFunction.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 givenSanitizableDatausing the availableSanitizingFunctions.Method parameters in org.springframework.boot.actuate.endpoint with type arguments of type SanitizableDataModifier and TypeMethodDescriptiondefault 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.