We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38c5e50 commit d827c07Copy full SHA for d827c07
ChangeLog
@@ -2,6 +2,7 @@ v4.2.5 (2017-xx-xx)
2
---------------------------
3
* issue #146: added ArangoCollection.exists()
4
* added ArangoDatabase.exists()
5
+* issue #152: added BaseDocument.setId(String)
6
7
v4.2.4 (2017-09-04)
8
src/main/java/com/arangodb/entity/BaseDocument.java
@@ -73,6 +73,10 @@ public String getId() {
73
return id;
74
}
75
76
+ public void setId(final String id) {
77
+ this.id = id;
78
+ }
79
+
80
public String getKey() {
81
return key;
82
0 commit comments