Interface DynamoDBMapperConfig.ObjectTableNameResolver
-
- Enclosing class:
- DynamoDBMapperConfig
public static interface DynamoDBMapperConfig.ObjectTableNameResolverInterface for a strategy used to determine the table name of an object based on it's class. This resolver is used when an object is available such as inDynamoDBMapper#batchLoad(java.util.List). If no table name resolver for objects is set,DynamoDBMapperreverts to using theDynamoDBMapperConfig.TableNameResolveron each object's class.- Author:
- Raniz
- See Also:
DynamoDBMapperConfig.TableNameResolver
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetTableName(Object object, DynamoDBMapperConfig config)Get the table name for an object.
-
-
-
Method Detail
-
getTableName
String getTableName(Object object, DynamoDBMapperConfig config)
Get the table name for an object.- Parameters:
object- The object to get the table name forconfig- TheDynamoDBMapperConfig- Returns:
- The table name to use for object
-
-