Skip to content

Commit db60806

Browse files
authored
Merge pull request #198 from eclipse/update-documentation
Update documentation
2 parents e28de37 + 10b7ab9 commit db60806

File tree

12 files changed

+30
-22
lines changed

12 files changed

+30
-22
lines changed

README.adoc

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Please note that you can establish properties using the https://microprofile.io/
3838
|Configuration property |Description
3939

4040
|`jnosql.jnosql.arangodb.host`
41-
|The database host, where you need to put the port split by colons. E.g., localhost:8529
41+
|The database host, where you need to put the port split by colons. E.g.: jnosql.jnosql.arangodb.host=localhost:8529
4242

4343
|`jnosql.arangodb.user`
4444
|The user's userID.
@@ -119,7 +119,7 @@ Please note that you can establish properties using the https://microprofile.io/
119119
|The user's password
120120

121121
|`jnosql.cassandra.host`
122-
|Database's host. It is a prefix to enumerate hosts. E.g.: cassandra.host.1=localhost
122+
|Database's host. It is a prefix to enumerate hosts. E.g.: jnosql.cassandra.host.1=localhost
123123

124124
|`jnosql.cassandra.name`
125125
|The name of the application using the created session.
@@ -128,7 +128,7 @@ Please note that you can establish properties using the https://microprofile.io/
128128
|The cassandra's port
129129

130130
|`jnosql.cassandra.query`
131-
|The Cassandra CQL to execute when the configuration starts. It uses as a prefix. E.g.: cassandra.query.1=<CQL>
131+
|The Cassandra CQL to execute when the configuration starts. It uses as a prefix. E.g.: jnosql.cassandra.query.1=<CQL>
132132

133133
|`jnosql.cassandra.data.center`
134134
|The datacenter that is considered "local" by the load balancing policy.
@@ -331,7 +331,7 @@ Please note that you can establish properties using the https://microprofile.io/
331331
|Configuration property |Description
332332

333333
|`jnosql.elasticsearch.host`
334-
|Database's host. It is a prefix to enumerate hosts. E.g.: elasticsearch.host.1=172.17.0.2:1234
334+
|Database's host. It is a prefix to enumerate hosts. E.g.: jnosql.elasticsearch.host.1=172.17.0.2:1234
335335

336336
|`jnosql.elasticsearch.user`
337337
|The user's userID.
@@ -383,7 +383,7 @@ Please note that you can establish properties using the https://microprofile.io/
383383
|The instance name uniquely identifying the hazelcast instance created by this configuration. This name is used in different scenarios, such as identifying the hazelcast instance when running multiple instances in the same JVM.
384384

385385
|`jnosql.hazelcast.host`
386-
|Database's host. It is a prefix to enumerate hosts. E.g.: hazelcast.host.1=localhost
386+
|Database's host. It is a prefix to enumerate hosts. E.g.: jnosql.hazelcast.host.1=localhost
387387

388388
|`jnosql.hazelcast.port`
389389
|The database port
@@ -441,7 +441,7 @@ Please note that you can establish properties using the https://microprofile.io/
441441
|Configuration property |Description
442442

443443
|`jnosql.hbase.family`
444-
|The Column family prefixes. E.g.: hbase.family.1=<FAMILY>
444+
|The Column family prefixes. E.g.: jnosql.hbase.family.1=<FAMILY>
445445

446446
|===
447447

@@ -484,10 +484,10 @@ Please note that you can establish properties using the https://microprofile.io/
484484
|Configuration property |Description
485485

486486
|`jnosql.infinispan.host`
487-
|Database's host. It is a prefix to enumerate hosts. E.g.: infinispan.host.1=HOST
487+
|Database's host. It is a prefix to enumerate hosts. E.g.: jnosql.infinispan.host.1=HOST
488488

489489
|`jnosql.infinispan.config`
490-
|The Infinispan configuration path. E.g.: infinispan.config=infinispan.xml
490+
|The Infinispan configuration path. E.g.: jnosql.infinispan.config=infinispan.xml
491491

492492
|===
493493

@@ -573,7 +573,7 @@ Please note that you can establish properties using the https://microprofile.io/
573573
|The user's password.
574574

575575
|`jnosql.memcached.host`
576-
|Database's host. It is a prefix to enumerate hosts. E.g.: memcached.host.1=localhost:11211
576+
|Database's host. It is a prefix to enumerate hosts. E.g.: jnosql.memcached.host.1=localhost:11211
577577

578578
|===
579579

@@ -898,7 +898,7 @@ Please note that you can establish properties using the https://microprofile.io/
898898
|Configuration property |Description
899899

900900
|`jnosql.solr.host`
901-
|Database's host. It is a prefix to enumerate hosts. E.g.: solr.host.1=HOST
901+
|Database's host. It is a prefix to enumerate hosts. E.g.: jnosql.solr.host.1=HOST
902902

903903
|`jnosql.solr.user`
904904
|The user's userID.

jnosql-arangodb-driver/src/main/java/org/eclipse/jnosql/communication/arangodb/ArangoDBConfigurations.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public enum ArangoDBConfigurations implements Supplier<String> {
2828

2929

3030
/**
31-
* The database host, where you need to put the port split by colons. E.g., localhost:8529
31+
* The database host, where you need to put the port split by colons. E.g.: jnosql.arangodb.host=localhost:8529
3232
*/
3333
HOST("jnosql.arangodb.host"),
3434
/**

jnosql-arangodb-driver/src/main/java/org/eclipse/jnosql/communication/arangodb/document/ArangoDBDocumentManagerFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
import com.arangodb.ArangoDB;
1919
import jakarta.nosql.document.DocumentManagerFactory;
2020

21-
final class ArangoDBDocumentManagerFactory implements DocumentManagerFactory {
21+
public final class ArangoDBDocumentManagerFactory implements DocumentManagerFactory {
2222

2323

2424
private final ArangoDB arangoDB;

jnosql-cassandra-driver/src/main/java/org/eclipse/jnosql/communication/cassandra/column/CassandraConfigurations.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public enum CassandraConfigurations implements Supplier<String> {
3535
*/
3636
PASSWORD("jnosql.cassandra.password"),
3737
/**
38-
* Database's host. It is a prefix to enumerate hosts. E.g.: cassandra.host.1=localhost
38+
* Database's host. It is a prefix to enumerate hosts. E.g.: jnosql.cassandra.host.1=localhost
3939
*/
4040
HOST("jnosql.cassandra.host"),
4141
/**
@@ -47,7 +47,7 @@ public enum CassandraConfigurations implements Supplier<String> {
4747
*/
4848
PORT("jnosql.cassandra.port"),
4949
/**
50-
* The Cassandra CQL to execute when the configuration starts. It uses as a prefix. E.g.: cassandra.query.1=CQL
50+
* The Cassandra CQL to execute when the configuration starts. It uses as a prefix. E.g.: jnosql.cassandra.query.1=CQL
5151
*/
5252
QUERY("jnosql.cassandra.query"),
5353
/**

jnosql-elasticsearch-driver/src/main/java/org/eclipse/jnosql/communication/elasticsearch/document/ElasticsearchConfigurations.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
public enum ElasticsearchConfigurations implements Supplier<String> {
2727

2828
/**
29-
* Database's host. It is a prefix to enumerate hosts. E.g.: elasticsearch.host.1=172.17.0.2:1234
29+
* Database's host. It is a prefix to enumerate hosts. E.g.: jnosql.elasticsearch.host.1=172.17.0.2:1234
3030
*/
3131
HOST("jnosql.elasticsearch.host"),
3232
/**

jnosql-hazelcast-driver/src/main/java/org/eclipse/jnosql/communication/hazelcast/keyvalue/HazelcastBucketManagerFactory.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,14 @@
2828
*/
2929
public interface HazelcastBucketManagerFactory extends BucketManagerFactory {
3030

31+
/**
32+
* Return the {@link HazelcastBucketManager} instance
33+
* @param bucket the function argument
34+
* @return the {@link HazelcastBucketManager} instance
35+
* @throws NullPointerException when the bucket is null
36+
*/
37+
@Override
38+
HazelcastBucketManager apply(String bucket);
3139
/**
3240
* Creates a {@link List} from bucket name
3341
*

jnosql-hazelcast-driver/src/main/java/org/eclipse/jnosql/communication/hazelcast/keyvalue/HazelcastConfigurations.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public enum HazelcastConfigurations implements Supplier<String> {
3232
*/
3333
INSTANCE("jnosql.hazelcast.instance.name"),
3434
/**
35-
* Database's host. It is a prefix to enumerate hosts. E.g.: hazelcast.host.1=localhost
35+
* Database's host. It is a prefix to enumerate hosts. E.g.: jnosql.hazelcast.host.1=localhost
3636
*/
3737
HOST("jnosql.hazelcast.host"),
3838
/**

jnosql-hbase-driver/src/main/java/org/eclipse/jnosql/communication/hbase/column/HbaseConfigurations.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public enum HbaseConfigurations implements Supplier<String> {
2727

2828

2929
/**
30-
* The Column family prefixes. E.g.: hbase.family.1=FAMILY
30+
* The Column family prefixes. E.g.: jnosql.hbase.family.1=FAMILY
3131
*/
3232
FAMILY("jnosql.hbase.family");
3333

jnosql-infinispan-driver/src/main/java/org/eclipse/jnosql/communication/infinispan/keyvalue/InfinispanConfigurations.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@
2626
public enum InfinispanConfigurations implements Supplier<String> {
2727

2828
/**
29-
* Database's host. It is a prefix to enumerate hosts. E.g.: infinispan.host.1=HOST
29+
* Database's host. It is a prefix to enumerate hosts. E.g.: jnosql.infinispan.host.1=HOST
3030
*/
3131
HOST("jnosql.infinispan.host"),
3232
/**
33-
* The Infinispan configuration path. E.g.: infinispan.config=infinispan.xml
33+
* The Infinispan configuration path. E.g.: jnosql.infinispan.config=infinispan.xml
3434
*/
3535
CONFIG("jnosql.infinispan.config");
3636

jnosql-memcached-driver/src/main/java/org/eclipse/jnosql/communication/memcached/keyvalue/MemcachedConfigurations.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ public enum MemcachedConfigurations implements Supplier<String> {
7979
*/
8080
PASSWORD("jnosql.memcached.password"),
8181
/**
82-
* Database's host. It is a prefix to enumerate hosts. E.g.: memcached.host.1=localhost:11211
82+
* Database's host. It is a prefix to enumerate hosts. E.g.: jnosql.memcached.host.1=localhost:11211
8383
*/
8484
HOST("jnosql.memcached.host");
8585

0 commit comments

Comments
 (0)