| Modifier and Type | Method and Description |
|---|---|
TableMetadata |
TableSchema.getTableMetadata()
Returns the object that describes the structure of the table being modelled by the mapper.
|
| Modifier and Type | Method and Description |
|---|---|
default ReadModification |
MapperExtension.afterRead(Map<String,AttributeValue> item,
OperationContext operationContext,
TableMetadata tableMetadata)
This hook is called just after an operation that has read data from the database.
|
default WriteModification |
MapperExtension.beforeWrite(Map<String,AttributeValue> item,
OperationContext operationContext,
TableMetadata tableMetadata)
This hook is called just before an operation is going to write data to the database.
|
| Modifier and Type | Method and Description |
|---|---|
ReadModification |
ChainMapperExtension.afterRead(Map<String,AttributeValue> item,
OperationContext operationContext,
TableMetadata tableMetadata)
Implementation of the
MapperExtension interface that will call all the chained extensions in reverse
order, passing the results of each one to the next and coalescing the results into a single modification. |
WriteModification |
ChainMapperExtension.beforeWrite(Map<String,AttributeValue> item,
OperationContext operationContext,
TableMetadata tableMetadata)
Implementation of the
MapperExtension interface that will call all the chained extensions in forward
order, passing the results of each one to the next and coalescing the results into a single modification. |
WriteModification |
VersionedRecordExtension.beforeWrite(Map<String,AttributeValue> item,
OperationContext operationContext,
TableMetadata tableMetadata) |
| Modifier and Type | Class and Description |
|---|---|
class |
StaticTableMetadata |
Copyright © 2019. All rights reserved.