Interface ConversionSchema
-
public interface ConversionSchemaA strategy for mapping between Java types and DynamoDB types. Serves as a factory forItemConverterinstances that implement this mapping. Standard implementations are available in theConversionSchemasclass.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classConversionSchema.DependenciesDependency injection for theItemConverters that thisConversionSchemagenerates.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ItemConvertergetConverter(ConversionSchema.Dependencies dependencies)Creates anItemConverter, injecting dependencies from theDynamoDBMapperthat needs it.
-
-
-
Method Detail
-
getConverter
ItemConverter getConverter(ConversionSchema.Dependencies dependencies)
Creates anItemConverter, injecting dependencies from theDynamoDBMapperthat needs it.- Parameters:
dependencies- the dependencies to inject- Returns:
- a new ItemConverter
-
-