Skip to content

Commit bdb4134

Browse files
authored
Merge pull request #257 from zawlazaw/mini-document-fix
docs: corrected javadoc
2 parents b8e4b7a + 58861ca commit bdb4134

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/main/java/com/arangodb/entity/CollectionPropertiesEntity.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,7 @@ public void setCount(final Long count) {
8888
}
8989

9090
/**
91-
* @return contains the names of document attributes that are used to determine the target shard for documents. Only
92-
* in a cluster setup
91+
* @return the number of shards of the collection. Only in a cluster setup (else returning null).
9392
*/
9493
public Integer getNumberOfShards() {
9594
return numberOfShards;
@@ -100,7 +99,8 @@ public void setNumberOfShards(final Integer numberOfShards) {
10099
}
101100

102101
/**
103-
* @return the number of shards of the collection. Only in a cluster setup.
102+
* @return the names of document attributes that are used to determine the target shard for documents.
103+
* Only in a cluster setup (else returning null).
104104
*/
105105
public Collection<String> getShardKeys() {
106106
return shardKeys;
@@ -119,7 +119,7 @@ public void setReplicationFactor(final Integer replicationFactor) {
119119
}
120120

121121
/**
122-
* @return whether the collection is a satellite collection. Only in a enterprise cluster setup.
122+
* @return whether the collection is a satellite collection. Only in an enterprise cluster setup (else returning null).
123123
*/
124124
public Boolean getSatellite() {
125125
return this.replicationFactor.getSatellite();

0 commit comments

Comments
 (0)