本文整理匯總了Java中com.amazonaws.services.dynamodbv2.datamodeling.DynamoDBMapperConfig.SaveBehavior.CLOBBER屬性的典型用法代碼示例。如果您正苦於以下問題:Java SaveBehavior.CLOBBER屬性的具體用法?Java SaveBehavior.CLOBBER怎麽用?Java SaveBehavior.CLOBBER使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在類com.amazonaws.services.dynamodbv2.datamodeling.DynamoDBMapperConfig.SaveBehavior
的用法示例。
在下文中一共展示了SaveBehavior.CLOBBER屬性的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: generateStandardData
public void generateStandardData(EncryptionMaterialsProvider prov) {
DynamoDBMapper mapper = new DynamoDBMapper(client,
new DynamoDBMapperConfig(SaveBehavior.CLOBBER), new AttributeEncryptor(prov));
mapper.save(new HashKeyOnly("Foo"));
mapper.save(new HashKeyOnly("Bar"));
mapper.save(new HashKeyOnly("Baz"));
mapper.save(new KeysOnly(0, 1));
mapper.save(new KeysOnly(0, 2));
mapper.save(new KeysOnly(0, 3));
mapper.save(new KeysOnly(1, 1));
mapper.save(new KeysOnly(1, 2));
mapper.save(new KeysOnly(1, 3));
mapper.save(new KeysOnly(5, 1));
mapper.save(new KeysOnly(6, 2));
mapper.save(new KeysOnly(7, 3));
mapper.save(ENCRYPTED_TEST_VALUE_2);
mapper.save(MIXED_TEST_VALUE_2);
mapper.save(SIGNED_TEST_VALUE_2);
mapper.save(UNTOUCHED_TEST_VALUE_2);
dumpTables();
}
示例2: testV0SymCompatibility
@Test
public void testV0SymCompatibility() {
DynamoDBMapper mapper = new DynamoDBMapper(client,
new DynamoDBMapperConfig(SaveBehavior.CLOBBER), new AttributeEncryptor(symProv));
insertV0SymData(client);
assertVersionCompatibility(mapper);
}
示例3: testV0AsymCompatibility
@Test
public void testV0AsymCompatibility() {
DynamoDBMapper mapper = new DynamoDBMapper(client,
new DynamoDBMapperConfig(SaveBehavior.CLOBBER), new AttributeEncryptor(asymProv));
insertV0AsymData(client);
assertVersionCompatibility(mapper);
}
示例4: testV0FixedWrappingTransformSymCompatibility
@Test
public void testV0FixedWrappingTransformSymCompatibility() {
DynamoDBMapper mapper = new DynamoDBMapper(client,
new DynamoDBMapperConfig(SaveBehavior.CLOBBER), new AttributeEncryptor(symProv));
insertV0FixedWrappingTransformSymData(client);
assertVersionCompatibility(mapper);
}
示例5: testV0FixedWrappingTransformAsymCompatibility
@Test
public void testV0FixedWrappingTransformAsymCompatibility() {
DynamoDBMapper mapper = new DynamoDBMapper(client,
new DynamoDBMapperConfig(SaveBehavior.CLOBBER), new AttributeEncryptor(asymProv));
insertV0FixedWrappingTransformAsymData(client);
assertVersionCompatibility(mapper);
}
示例6: testV0FixedDoubleSymCompatibility
@Test
public void testV0FixedDoubleSymCompatibility() {
DynamoDBMapper mapper = new DynamoDBMapper(client,
new DynamoDBMapperConfig(SaveBehavior.CLOBBER), new AttributeEncryptor(symProv));
insertV0FixedDoubleSymData(client);
assertVersionCompatibility_2(mapper);
}
示例7: testV0FixedDoubleAsymCompatibility
@Test
public void testV0FixedDoubleAsymCompatibility() {
DynamoDBMapper mapper = new DynamoDBMapper(client,
new DynamoDBMapperConfig(SaveBehavior.CLOBBER), new AttributeEncryptor(asymProv));
insertV0FixedDoubleAsymData(client);
assertVersionCompatibility_2(mapper);
}