Class DeserializationContexts

java.lang.Object
tools.jackson.databind.cfg.DeserializationContexts
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
DeserializationContexts.DefaultImpl

public abstract class DeserializationContexts extends Object implements Serializable
Factory/builder class that replaces Jackson 2.x concept of "blueprint" instance of DeserializationContext. It will be constructed and configured during ObjectMapper building phase, and will be called once per readValue call to construct actual stateful DeserializationContext to use during serialization.

Note that since this object has to be serializable (to allow JDK serialization of mapper instances), DeserializationContext need not be serializable any more.

Since:
3.0
See Also: