sdk1/src/main/java/com/amazonaws/services/dynamodbv2/datamodeling/encryption/EncryptionContext.java [63:100]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public String getTableName() {
    return tableName;
  }

  /** Returns the DynamoDB record about to be encrypted/decrypted. */
  public Map<String, AttributeValue> getAttributeValues() {
    return attributeValues;
  }

  /**
   * When used for an object mapping layer (such as {@link DynamoDBMapper}) this represents the
   * class being mapped to/from DynamoDB.
   */
  public Class<?> getModeledClass() {
    return modeledClass;
  }

  /**
   * This object has no meaning (and will not be set or examined) by any core libraries. It exists
   * to allow custom object mappers and data access layers to pass data to {@link
   * EncryptionMaterialsProvider}s through the {@link DynamoDBEncryptor}.
   */
  public Object getDeveloperContext() {
    return developerContext;
  }

  /** Returns the name of the HashKey attribute for the record to be encrypted/decrypted. */
  public String getHashKeyName() {
    return hashKeyName;
  }

  /** Returns the name of the RangeKey attribute for the record to be encrypted/decrypted. */
  public String getRangeKeyName() {
    return rangeKeyName;
  }

  public Map<String, String> getMaterialDescription() {
    return materialDescription;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



sdk1/src/main/java/com/amazonaws/services/dynamodbv2/datamodeling/encryption/EncryptionContext.java [173:198]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public String getTableName() {
      return tableName;
    }

    public Map<String, AttributeValue> getAttributeValues() {
      return attributeValues;
    }

    public Class<?> getModeledClass() {
      return modeledClass;
    }

    public Object getDeveloperContext() {
      return developerContext;
    }

    public String getHashKeyName() {
      return hashKeyName;
    }

    public String getRangeKeyName() {
      return rangeKeyName;
    }

    public Map<String, String> getMaterialDescription() {
      return materialDescription;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



