Interface ProtocolUnmarshallDependencies
-
- All Known Implementing Classes:
DefaultProtocolUnmarshallDependencies
public interface ProtocolUnmarshallDependencies
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description software.amazon.awssdk.thirdparty.jackson.core.JsonFactoryjsonFactory()Used to parse JSON using Jackson.JsonUnmarshallerRegistryjsonUnmarshallerRegistry()Used for unmarshalling.JsonValueNodeFactorynodeValueFactory()Used for parsing.Map<MarshallLocation,TimestampFormatTrait.Format>timestampFormats()Used to expose this data through the interface.
-
-
-
Method Detail
-
jsonUnmarshallerRegistry
JsonUnmarshallerRegistry jsonUnmarshallerRegistry()
Used for unmarshalling. This registry is used to lookup an unmarshaller for a given location and marshalling type.
-
nodeValueFactory
JsonValueNodeFactory nodeValueFactory()
Used for parsing. This factory knows how to convert the state of the parser intoJsonNodeinstances that are used during unmarshalling.
-
timestampFormats
Map<MarshallLocation,TimestampFormatTrait.Format> timestampFormats()
Used to expose this data through the interface.
-
jsonFactory
software.amazon.awssdk.thirdparty.jackson.core.JsonFactory jsonFactory()
Used to parse JSON using Jackson.
-
-