Class PropertyTransformers.NoOpPropertyTransformer
java.lang.Object
org.springframework.vault.core.util.PropertyTransformers.NoOpPropertyTransformer
- All Implemented Interfaces:
PropertyTransformer
- Enclosing class:
- PropertyTransformers
public static class PropertyTransformers.NoOpPropertyTransformer
extends Object
implements PropertyTransformer
PropertyTransformer that passes the given properties through without
returning changed properties.-
Method Summary
Modifier and TypeMethodDescriptionstatic PropertyTransformerinstance()transformProperties(Map<String, ? extends Object> input) Transform properties by creating a new map using the transformed property set.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.springframework.vault.core.util.PropertyTransformer
andThen
-
Method Details
-
instance
- Returns:
- the
PropertyTransformerinstance.
-
transformProperties
Description copied from interface:PropertyTransformerTransform properties by creating a new map using the transformed property set.Implementing classes do not change the
inputbut create a newproperty map.- Specified by:
transformPropertiesin interfacePropertyTransformer- Parameters:
input- must not be null.- Returns:
- transformed properties.
-