public Map untransform()

in sdk1/src/main/java/com/amazonaws/services/dynamodbv2/datamodeling/AttributeEncryptor.java [98:107]


  public Map<String, AttributeValue> untransform(final Parameters<?> parameters) {
    final Map<String, Set<EncryptionFlags>> attributeFlags = getEncryptionFlags(parameters);

    try {
      return encryptor.decryptRecord(
          parameters.getAttributeValues(), attributeFlags, paramsToContext(parameters));
    } catch (Exception ex) {
      throw new DynamoDBMappingException(ex);
    }
  }