Class DefaultOperationContext
- java.lang.Object
-
- software.amazon.awssdk.enhanced.dynamodb.internal.operations.DefaultOperationContext
-
- All Implemented Interfaces:
OperationContext
public class DefaultOperationContext extends Object implements OperationContext
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DefaultOperationContext
create(String tableName)
static DefaultOperationContext
create(String tableName, String indexName)
boolean
equals(Object o)
int
hashCode()
String
indexName()
The name of the index within the table being operated on.String
tableName()
The name of the table being operated on
-
-
-
Method Detail
-
create
public static DefaultOperationContext create(String tableName, String indexName)
-
create
public static DefaultOperationContext create(String tableName)
-
tableName
public String tableName()
Description copied from interface:OperationContext
The name of the table being operated on- Specified by:
tableName
in interfaceOperationContext
-
indexName
public String indexName()
Description copied from interface:OperationContext
The name of the index within the table being operated on. If it is the primary index, then this value will be set to the constantTableMetadata.primaryIndexName()
.- Specified by:
indexName
in interfaceOperationContext
-
-