Skip to content

Commit 22796d7

Browse files
#38 Upgrading dependendcies to Spring Data Evans GA
1 parent 7b00683 commit 22796d7

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<parent>
1414
<groupId>org.springframework.data.build</groupId>
1515
<artifactId>spring-data-parent</artifactId>
16-
<version>1.4.0.RELEASE</version>
16+
<version>1.5.0.RELEASE</version>
1717
<relativePath>../spring-data-build/parent/pom.xml</relativePath>
1818
</parent>
1919

@@ -33,7 +33,7 @@
3333
<commons.collections>3.2.1</commons.collections>
3434
<commons.lang>3.1</commons.lang>
3535
<httpcomponents>4.2.2</httpcomponents>
36-
<springdata.commons>1.8.0.RELEASE</springdata.commons>
36+
<springdata.commons>1.9.0.RELEASE</springdata.commons>
3737
<aws-java-sdk>1.9.0</aws-java-sdk>
3838
</properties>
3939

src/main/java/org/socialsignin/spring/data/dynamodb/mapping/DynamoDBPersistentPropertyImpl.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,12 +76,15 @@ public DynamoDBPersistentPropertyImpl(Field field, PropertyDescriptor propertyDe
7676

7777
super(field, propertyDescriptor, owner, simpleTypeHolder);
7878
}
79+
80+
7981

8082
@Override
81-
public boolean shallBePersisted() {
83+
public boolean isWritable() {
8284
return !isAnnotationPresent(DynamoDBIgnore.class);
8385
}
8486

87+
8588
public boolean isHashKeyProperty() {
8689
return isAnnotationPresent(DynamoDBHashKey.class);
8790
}

0 commit comments

Comments
 (0)