diff --git a/README.md b/README.md index d2930ba6e66..0b5a61520f5 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Datastax Java Driver for Apache Cassandra® +# DataStax Java Driver for Apache Cassandra® [](https://maven-badges.herokuapp.com/maven-central/com.datastax.oss/java-driver-core) diff --git a/core/src/main/java/com/datastax/dse/driver/api/core/cql/continuous/ContinuousSession.java b/core/src/main/java/com/datastax/dse/driver/api/core/cql/continuous/ContinuousSession.java index f98b0a5d1fa..bf05fce92b1 100644 --- a/core/src/main/java/com/datastax/dse/driver/api/core/cql/continuous/ContinuousSession.java +++ b/core/src/main/java/com/datastax/dse/driver/api/core/cql/continuous/ContinuousSession.java @@ -30,8 +30,8 @@ /** * A session that has the ability to execute continuous paging queries. * - *
Continuous paging is a new method of streaming bulk amounts of records from Datastax - * Enterprise (DSE) to the Datastax Java Driver, available since DSE 5.1. It is mainly intended to + *
Continuous paging is a new method of streaming bulk amounts of records from DataStax + * Enterprise (DSE) to the DataStax Java Driver, available since DSE 5.1. It is mainly intended to * be leveraged by DSE * Analytics and Apache Spark™, or by any similar analytics tool that needs to read large @@ -76,7 +76,7 @@ public interface ContinuousSession extends Session { * *
See {@link ContinuousSession} for more explanations about continuous paging. * - *
This feature is only available with Datastax Enterprise. Executing continuous queries + *
This feature is only available with DataStax Enterprise. Executing continuous queries * against an Apache Cassandra© cluster will result in a runtime error. * * @param statement the query to execute. @@ -99,7 +99,7 @@ default ContinuousResultSet executeContinuously(@NonNull Statement> statement) * *
See {@link ContinuousSession} for more explanations about continuous paging. * - *
This feature is only available with Datastax Enterprise. Executing continuous queries + *
This feature is only available with DataStax Enterprise. Executing continuous queries * against an Apache Cassandra© cluster will result in a runtime error. * * @param statement the query to execute. diff --git a/core/src/main/java/com/datastax/dse/driver/api/core/cql/continuous/reactive/ContinuousReactiveSession.java b/core/src/main/java/com/datastax/dse/driver/api/core/cql/continuous/reactive/ContinuousReactiveSession.java index 9661f9bf5a1..20392fb81ec 100644 --- a/core/src/main/java/com/datastax/dse/driver/api/core/cql/continuous/reactive/ContinuousReactiveSession.java +++ b/core/src/main/java/com/datastax/dse/driver/api/core/cql/continuous/reactive/ContinuousReactiveSession.java @@ -51,7 +51,7 @@ public interface ContinuousReactiveSession extends Session { * *
See {@link ContinuousSession} for more explanations about continuous paging. * - *
This feature is only available with Datastax Enterprise. Executing continuous queries + *
This feature is only available with DataStax Enterprise. Executing continuous queries * against an Apache Cassandra® cluster will result in a runtime error. * * @param query the query to execute. @@ -68,7 +68,7 @@ default ContinuousReactiveResultSet executeContinuouslyReactive(@NonNull String * *
See {@link ContinuousSession} for more explanations about continuous paging. * - *
This feature is only available with Datastax Enterprise. Executing continuous queries + *
This feature is only available with DataStax Enterprise. Executing continuous queries * against an Apache Cassandra® cluster will result in a runtime error. * * @param statement the statement to execute. diff --git a/core/src/main/java/com/datastax/dse/driver/api/core/graph/GraphSession.java b/core/src/main/java/com/datastax/dse/driver/api/core/graph/GraphSession.java index 2c022ff4d49..6cd447e9c2e 100644 --- a/core/src/main/java/com/datastax/dse/driver/api/core/graph/GraphSession.java +++ b/core/src/main/java/com/datastax/dse/driver/api/core/graph/GraphSession.java @@ -49,7 +49,7 @@ public interface GraphSession extends Session { * configuration and schema. * * - *
This feature is only available with Datastax Enterprise. Executing graph queries against an + *
This feature is only available with DataStax Enterprise. Executing graph queries against an * Apache Cassandra® cluster will result in a runtime error. * * @see GraphResultSet @@ -67,7 +67,7 @@ default GraphResultSet execute(@NonNull GraphStatement> graphStatement) { * Executes a graph statement asynchronously (the call returns as soon as the statement was sent, * generally before the result is available). * - *
This feature is only available with Datastax Enterprise. Executing graph queries against an + *
This feature is only available with DataStax Enterprise. Executing graph queries against an * Apache Cassandra® cluster will result in a runtime error. * * @see #execute(GraphStatement) diff --git a/core/src/main/java/com/datastax/oss/driver/api/core/CqlSession.java b/core/src/main/java/com/datastax/oss/driver/api/core/CqlSession.java index 2392182bf67..86eb88e2f0b 100644 --- a/core/src/main/java/com/datastax/oss/driver/api/core/CqlSession.java +++ b/core/src/main/java/com/datastax/oss/driver/api/core/CqlSession.java @@ -32,7 +32,7 @@ * *
This feature is only available with Datastax Enterprise. If the target server is Apache + *
This feature is only available with DataStax Enterprise. If the target server is Apache * Cassandra, the authorizationId will be ignored. */ public Credentials( diff --git a/core/src/main/java/com/datastax/oss/driver/api/core/auth/ProgrammaticPlainTextAuthProvider.java b/core/src/main/java/com/datastax/oss/driver/api/core/auth/ProgrammaticPlainTextAuthProvider.java index 7166e72b1f5..50de327884d 100644 --- a/core/src/main/java/com/datastax/oss/driver/api/core/auth/ProgrammaticPlainTextAuthProvider.java +++ b/core/src/main/java/com/datastax/oss/driver/api/core/auth/ProgrammaticPlainTextAuthProvider.java @@ -67,7 +67,7 @@ public ProgrammaticPlainTextAuthProvider(@NonNull String username, @NonNull Stri * Builds an instance for username/password authentication, and proxy authentication with the * given authorizationId. * - *
This feature is only available with Datastax Enterprise. If the target server is Apache + *
This feature is only available with DataStax Enterprise. If the target server is Apache * Cassandra, use {@link #ProgrammaticPlainTextAuthProvider(String, String)} instead, or set the * authorizationId to an empty string. */ @@ -109,7 +109,7 @@ public void setPassword(@NonNull String password) { * *
The new credentials will be used for all connections initiated after this method was called. * - *
This feature is only available with Datastax Enterprise. If the target server is Apache + *
This feature is only available with DataStax Enterprise. If the target server is Apache * Cassandra, this method should not be used. * * @param authorizationId the new authorization id. diff --git a/core/src/main/java/com/datastax/oss/driver/api/core/config/DefaultDriverOption.java b/core/src/main/java/com/datastax/oss/driver/api/core/config/DefaultDriverOption.java index b2fba21d6a3..e7e75d952fa 100644 --- a/core/src/main/java/com/datastax/oss/driver/api/core/config/DefaultDriverOption.java +++ b/core/src/main/java/com/datastax/oss/driver/api/core/config/DefaultDriverOption.java @@ -793,7 +793,7 @@ public enum DefaultDriverOption implements DriverOption { NETTY_DAEMON("advanced.netty.daemon"), /** - * The location of the cloud secure bundle used to connect to Datastax Apache Cassandra as a + * The location of the cloud secure bundle used to connect to DataStax Apache Cassandra as a * service. * *
Value-type: {@link String}
diff --git a/core/src/main/java/com/datastax/oss/driver/api/core/config/TypedDriverOption.java b/core/src/main/java/com/datastax/oss/driver/api/core/config/TypedDriverOption.java
index bce8f923c77..2428be064ce 100644
--- a/core/src/main/java/com/datastax/oss/driver/api/core/config/TypedDriverOption.java
+++ b/core/src/main/java/com/datastax/oss/driver/api/core/config/TypedDriverOption.java
@@ -617,7 +617,7 @@ public String toString() {
public static final TypedDriverOption This feature is only available in Datastax Enterprise. If connecting to Apache Cassandra,
+ * This feature is only available in DataStax Enterprise. If connecting to Apache Cassandra,
* the authorization id will be ignored; it is recommended to use {@link
* #withAuthCredentials(String, String)} instead.
*
diff --git a/core/src/main/java/com/datastax/oss/driver/internal/core/auth/PlainTextAuthProvider.java b/core/src/main/java/com/datastax/oss/driver/internal/core/auth/PlainTextAuthProvider.java
index 73f320bbcdf..857ef456136 100644
--- a/core/src/main/java/com/datastax/oss/driver/internal/core/auth/PlainTextAuthProvider.java
+++ b/core/src/main/java/com/datastax/oss/driver/internal/core/auth/PlainTextAuthProvider.java
@@ -39,7 +39,7 @@
* username = cassandra
* password = cassandra
*
- * // If connecting to Datastax Enterprise, this additional option allows proxy authentication
+ * // If connecting to DataStax Enterprise, this additional option allows proxy authentication
* // (login as another user or role)
* authorization-id = userOrRole
* }
diff --git a/core/src/main/resources/reference.conf b/core/src/main/resources/reference.conf
index f7e2cd76ad1..ee83280032e 100644
--- a/core/src/main/resources/reference.conf
+++ b/core/src/main/resources/reference.conf
@@ -241,7 +241,7 @@ datastax-java-driver {
slow-replica-avoidance = true
}
basic.cloud {
- # The location of the cloud secure bundle used to connect to Datastax Apache Cassandra as a
+ # The location of the cloud secure bundle used to connect to DataStax Apache Cassandra as a
# service.
# This setting must be a valid URL.
# If the protocol is not specified, it is implicitly assumed to be the `file://` protocol,
@@ -683,7 +683,7 @@ datastax-java-driver {
#
# The driver provides two implementations:
# - PlainTextAuthProvider: uses plain-text credentials. It requires the `username` and
- # `password` options below. When connecting to Datastax Enterprise, an optional
+ # `password` options below. When connecting to DataStax Enterprise, an optional
# `authorization-id` can also be specified.
# For backward compatibility with previous driver versions, you can also use the class name
# "DsePlainTextAuthProvider" for this provider.
diff --git a/manual/core/dse/README.md b/manual/core/dse/README.md
index e0d41ef38c7..8df3568e1ff 100644
--- a/manual/core/dse/README.md
+++ b/manual/core/dse/README.md
@@ -1,6 +1,6 @@
## DSE-specific features
-Some driver features only work with Datastax Enterprise:
+Some driver features only work with DataStax Enterprise:
* [Graph](graph/);
* [Geospatial types](geotypes/);
@@ -8,4 +8,4 @@ Some driver features only work with Datastax Enterprise:
Note that, if you don't use these features, you might be able to exclude certain dependencies in
order to limit the number of JARs in your classpath. See the
-[Integration](../integration/#driver-dependencies) page.
\ No newline at end of file
+[Integration](../integration/#driver-dependencies) page.
diff --git a/manual/core/integration/README.md b/manual/core/integration/README.md
index 9900d3b3f90..3f42b1dabfe 100644
--- a/manual/core/integration/README.md
+++ b/manual/core/integration/README.md
@@ -453,7 +453,7 @@ dependency:
[Jackson](https://github.com/FasterXML/jackson) is used:
-* when connecting to [Datastax Astra](../../cloud/);
+* when connecting to [DataStax Astra](../../cloud/);
* when Insights monitoring is enabled;
* when [Json codecs](../custom_codecs) are being used.
diff --git a/manual/core/metadata/node/README.md b/manual/core/metadata/node/README.md
index 1555c2ad1a5..ae66a468fd3 100644
--- a/manual/core/metadata/node/README.md
+++ b/manual/core/metadata/node/README.md
@@ -51,7 +51,7 @@ but in general it represents the proximity to the client, and `LOCAL` nodes will
coordinators. They also influence pooling options.
[Node#getExtras()] contains additional free-form properties. This is intended for future evolution
-or custom driver extensions. In particular, if the driver is connected to Datastax Enterprise, the
+or custom driver extensions. In particular, if the driver is connected to DataStax Enterprise, the
map will contain additional information under the keys defined in [DseNodeProperties]:
```java
@@ -142,4 +142,4 @@ the source code.
[NodeStateListener]: https://docs.datastax.com/en/drivers/java/4.14/com/datastax/oss/driver/api/core/metadata/NodeStateListener.html
[NodeStateListenerBase]: https://docs.datastax.com/en/drivers/java/4.14/com/datastax/oss/driver/api/core/metadata/NodeStateListenerBase.html
[SessionBuilder.addNodeStateListener]: https://docs.datastax.com/en/drivers/java/4.14/com/datastax/oss/driver/api/core/session/SessionBuilder.html#addNodeStateListener-com.datastax.oss.driver.api.core.metadata.NodeStateListener-
-[DseNodeProperties]: https://docs.datastax.com/en/drivers/java/4.14/com/datastax/dse/driver/api/core/metadata/DseNodeProperties.html
\ No newline at end of file
+[DseNodeProperties]: https://docs.datastax.com/en/drivers/java/4.14/com/datastax/dse/driver/api/core/metadata/DseNodeProperties.html
diff --git a/manual/query_builder/README.md b/manual/query_builder/README.md
index ab4369f2016..4677fb84145 100644
--- a/manual/query_builder/README.md
+++ b/manual/query_builder/README.md
@@ -70,13 +70,13 @@ SimpleStatement statement = select.build();
SimpleStatementBuilder builder = select.builder();
```
-#### Datastax Enterprise
+#### DataStax Enterprise
The driver provides two additional entry points for DSE-specific queries: [DseQueryBuilder] and
[DseSchemaBuilder]. They extend their respective non-DSE counterparts, so anything that is available
on the default query builder can also be done with the DSE query builder.
-We recommend that you use those classes if you are targeting Datastax Enterprise; they will be
+We recommend that you use those classes if you are targeting DataStax Enterprise; they will be
enriched in the future if DSE adds custom CQL syntax.
Currently, the only difference is the support for the `DETERMINISTIC` and `MONOTONIC` keywords when
diff --git a/upgrade_guide/README.md b/upgrade_guide/README.md
index 125c04db034..785f51290da 100644
--- a/upgrade_guide/README.md
+++ b/upgrade_guide/README.md
@@ -372,7 +372,7 @@ least 4.6.1.
### 4.4.0
-Datastax Enterprise support is now available directly in the main driver. There is no longer a
+DataStax Enterprise support is now available directly in the main driver. There is no longer a
separate DSE driver.
#### For Apache Cassandra® users
@@ -388,7 +388,7 @@ Apart from that, the only visible change is that DSE-specific features are now e
lean, you can exclude some dependencies when you don't use the corresponding DSE features; see the
[Integration>Driver dependencies](../manual/core/integration/#driver-dependencies) section.
-#### For Datastax Enterprise users
+#### For DataStax Enterprise users
Adjust your Maven coordinates to use the unified artifact:
@@ -514,7 +514,7 @@ We have dropped support for legacy protocol versions v1 and v2. As a result, the
compatible with:
* **Apache Cassandra®: 2.1 and above**;
-* **Datastax Enterprise: 4.7 and above**.
+* **DataStax Enterprise: 4.7 and above**.
#### Packages