Skip to content

Commit 0a61884

Browse files
authored
Standardize on DataStax vs Datastax since that appears to be more common (#1608)
Updates to documentation only
1 parent f6cc4d7 commit 0a61884

File tree

17 files changed

+29
-29
lines changed

17 files changed

+29
-29
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Datastax Java Driver for Apache Cassandra®
1+
# DataStax Java Driver for Apache Cassandra®
22

33
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.datastax.oss/java-driver-core/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.datastax.oss/java-driver-core)
44

core/src/main/java/com/datastax/dse/driver/api/core/cql/continuous/ContinuousSession.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030
/**
3131
* A session that has the ability to execute continuous paging queries.
3232
*
33-
* <p>Continuous paging is a new method of streaming bulk amounts of records from Datastax
34-
* Enterprise (DSE) to the Datastax Java Driver, available since DSE 5.1. It is mainly intended to
33+
* <p>Continuous paging is a new method of streaming bulk amounts of records from DataStax
34+
* Enterprise (DSE) to the DataStax Java Driver, available since DSE 5.1. It is mainly intended to
3535
* be leveraged by <a
3636
* href="https://docs.datastax.com/en/dse/5.1/dse-dev/datastax_enterprise/analytics/analyticsTOC.html">DSE
3737
* Analytics</a> and Apache Spark™, or by any similar analytics tool that needs to read large
@@ -76,7 +76,7 @@ public interface ContinuousSession extends Session {
7676
*
7777
* <p>See {@link ContinuousSession} for more explanations about continuous paging.
7878
*
79-
* <p>This feature is only available with Datastax Enterprise. Executing continuous queries
79+
* <p>This feature is only available with DataStax Enterprise. Executing continuous queries
8080
* against an Apache Cassandra&copy; cluster will result in a runtime error.
8181
*
8282
* @param statement the query to execute.
@@ -99,7 +99,7 @@ default ContinuousResultSet executeContinuously(@NonNull Statement<?> statement)
9999
*
100100
* <p>See {@link ContinuousSession} for more explanations about continuous paging.
101101
*
102-
* <p>This feature is only available with Datastax Enterprise. Executing continuous queries
102+
* <p>This feature is only available with DataStax Enterprise. Executing continuous queries
103103
* against an Apache Cassandra&copy; cluster will result in a runtime error.
104104
*
105105
* @param statement the query to execute.

core/src/main/java/com/datastax/dse/driver/api/core/cql/continuous/reactive/ContinuousReactiveSession.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public interface ContinuousReactiveSession extends Session {
5151
*
5252
* <p>See {@link ContinuousSession} for more explanations about continuous paging.
5353
*
54-
* <p>This feature is only available with Datastax Enterprise. Executing continuous queries
54+
* <p>This feature is only available with DataStax Enterprise. Executing continuous queries
5555
* against an Apache Cassandra&reg; cluster will result in a runtime error.
5656
*
5757
* @param query the query to execute.
@@ -68,7 +68,7 @@ default ContinuousReactiveResultSet executeContinuouslyReactive(@NonNull String
6868
*
6969
* <p>See {@link ContinuousSession} for more explanations about continuous paging.
7070
*
71-
* <p>This feature is only available with Datastax Enterprise. Executing continuous queries
71+
* <p>This feature is only available with DataStax Enterprise. Executing continuous queries
7272
* against an Apache Cassandra&reg; cluster will result in a runtime error.
7373
*
7474
* @param statement the statement to execute.

core/src/main/java/com/datastax/dse/driver/api/core/graph/GraphSession.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public interface GraphSession extends Session {
4949
* configuration and schema.
5050
* </ul>
5151
*
52-
* <p>This feature is only available with Datastax Enterprise. Executing graph queries against an
52+
* <p>This feature is only available with DataStax Enterprise. Executing graph queries against an
5353
* Apache Cassandra&reg; cluster will result in a runtime error.
5454
*
5555
* @see GraphResultSet
@@ -67,7 +67,7 @@ default GraphResultSet execute(@NonNull GraphStatement<?> graphStatement) {
6767
* Executes a graph statement asynchronously (the call returns as soon as the statement was sent,
6868
* generally before the result is available).
6969
*
70-
* <p>This feature is only available with Datastax Enterprise. Executing graph queries against an
70+
* <p>This feature is only available with DataStax Enterprise. Executing graph queries against an
7171
* Apache Cassandra&reg; cluster will result in a runtime error.
7272
*
7373
* @see #execute(GraphStatement)

core/src/main/java/com/datastax/oss/driver/api/core/CqlSession.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
*
3333
* <ul>
3434
* <li>CQL requests: synchronous, asynchronous or reactive mode;
35-
* <li>requests specific to Datastax Enterprise: graph and continuous paging.
35+
* <li>requests specific to DataStax Enterprise: graph and continuous paging.
3636
* </ul>
3737
*
3838
* Client applications can use this interface even if they don't need all the features. In

core/src/main/java/com/datastax/oss/driver/api/core/auth/PlainTextAuthProviderBase.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ public static class Credentials {
100100
* Builds an instance for username/password authentication, and proxy authentication with the
101101
* given authorizationId.
102102
*
103-
* <p>This feature is only available with Datastax Enterprise. If the target server is Apache
103+
* <p>This feature is only available with DataStax Enterprise. If the target server is Apache
104104
* Cassandra, the authorizationId will be ignored.
105105
*/
106106
public Credentials(

core/src/main/java/com/datastax/oss/driver/api/core/auth/ProgrammaticPlainTextAuthProvider.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public ProgrammaticPlainTextAuthProvider(@NonNull String username, @NonNull Stri
6767
* Builds an instance for username/password authentication, and proxy authentication with the
6868
* given authorizationId.
6969
*
70-
* <p>This feature is only available with Datastax Enterprise. If the target server is Apache
70+
* <p>This feature is only available with DataStax Enterprise. If the target server is Apache
7171
* Cassandra, use {@link #ProgrammaticPlainTextAuthProvider(String, String)} instead, or set the
7272
* authorizationId to an empty string.
7373
*/
@@ -109,7 +109,7 @@ public void setPassword(@NonNull String password) {
109109
*
110110
* <p>The new credentials will be used for all connections initiated after this method was called.
111111
*
112-
* <p>This feature is only available with Datastax Enterprise. If the target server is Apache
112+
* <p>This feature is only available with DataStax Enterprise. If the target server is Apache
113113
* Cassandra, this method should not be used.
114114
*
115115
* @param authorizationId the new authorization id.

core/src/main/java/com/datastax/oss/driver/api/core/config/DefaultDriverOption.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -793,7 +793,7 @@ public enum DefaultDriverOption implements DriverOption {
793793
NETTY_DAEMON("advanced.netty.daemon"),
794794

795795
/**
796-
* The location of the cloud secure bundle used to connect to Datastax Apache Cassandra as a
796+
* The location of the cloud secure bundle used to connect to DataStax Apache Cassandra as a
797797
* service.
798798
*
799799
* <p>Value-type: {@link String}

core/src/main/java/com/datastax/oss/driver/api/core/config/TypedDriverOption.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -617,7 +617,7 @@ public String toString() {
617617
public static final TypedDriverOption<Boolean> NETTY_DAEMON =
618618
new TypedDriverOption<>(DefaultDriverOption.NETTY_DAEMON, GenericType.BOOLEAN);
619619
/**
620-
* The location of the cloud secure bundle used to connect to Datastax Apache Cassandra as a
620+
* The location of the cloud secure bundle used to connect to DataStax Apache Cassandra as a
621621
* service.
622622
*/
623623
public static final TypedDriverOption<String> CLOUD_SECURE_CONNECT_BUNDLE =

core/src/main/java/com/datastax/oss/driver/api/core/session/SessionBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ public SelfT withAuthCredentials(@NonNull String username, @NonNull String passw
351351
* Configures the session to use DSE plaintext authentication with the given username and
352352
* password, and perform proxy authentication with the given authorization id.
353353
*
354-
* <p>This feature is only available in Datastax Enterprise. If connecting to Apache Cassandra,
354+
* <p>This feature is only available in DataStax Enterprise. If connecting to Apache Cassandra,
355355
* the authorization id will be ignored; it is recommended to use {@link
356356
* #withAuthCredentials(String, String)} instead.
357357
*

0 commit comments

Comments
 (0)