Interface JsonUnmarshallerRegistry
-
- All Known Implementing Classes:
DefaultJsonUnmarshallerRegistry
public interface JsonUnmarshallerRegistry
Registry ofJsonUnmarshaller
implementations by location and type.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <T> JsonUnmarshaller<Object>
getUnmarshaller(MarshallLocation marshallLocation, MarshallingType<T> marshallingType)
Returns the unmarshaller for the given location and type.
-
-
-
Method Detail
-
getUnmarshaller
<T> JsonUnmarshaller<Object> getUnmarshaller(MarshallLocation marshallLocation, MarshallingType<T> marshallingType)
Returns the unmarshaller for the given location and type. Throws an exception if no unmarshaller is found.
-
-