Interface ConversionSchema
public interface ConversionSchema
A strategy for mapping between Java types and DynamoDB types. Serves as a
factory for
ItemConverter
instances that implement this mapping.
Standard implementations are available in the ConversionSchemas
class.-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic class
Dependency injection for theItemConverter
s that thisConversionSchema
generates. -
Method Summary
Modifier and TypeMethodDescriptiongetConverter
(ConversionSchema.Dependencies dependencies) Creates anItemConverter
, injecting dependencies from theDynamoDBMapper
that needs it.
-
Method Details
-
getConverter
Creates anItemConverter
, injecting dependencies from theDynamoDBMapper
that needs it.- Parameters:
dependencies
- the dependencies to inject- Returns:
- a new ItemConverter
-