@@ -261,7 +261,12 @@ public VersionNumber getCassandraVersion() {
261
261
* possibility.
262
262
*
263
263
* @return the DSE version the host is running.
264
+ * @deprecated Please use the
265
+ * <a href="https://github.com/datastax/java-driver-dse">Java driver for DSE</a>
266
+ * if you are connecting to a DataStax Enterprise (DSE) cluster.
267
+ * This method might not function properly with future versions of DSE.
264
268
*/
269
+ @ Deprecated
265
270
public VersionNumber getDseVersion () {
266
271
return dseVersion ;
267
272
}
@@ -274,7 +279,12 @@ public VersionNumber getDseVersion() {
274
279
* possibility.
275
280
*
276
281
* @return the DSE workload the host is running.
282
+ * @deprecated Please use the
283
+ * <a href="https://github.com/datastax/java-driver-dse">Java driver for DSE</a>
284
+ * if you are connecting to a DataStax Enterprise (DSE) cluster.
285
+ * This method might not function properly with future versions of DSE.
277
286
*/
287
+ @ Deprecated
278
288
public String getDseWorkload () {
279
289
return dseWorkload ;
280
290
}
@@ -283,7 +293,12 @@ public String getDseWorkload() {
283
293
* Returns whether the host is running DSE Graph.
284
294
*
285
295
* @return whether the node is running DSE Graph.
296
+ * @deprecated Please use the
297
+ * <a href="https://github.com/datastax/java-driver-dse">Java driver for DSE</a>
298
+ * if you are connecting to a DataStax Enterprise (DSE) cluster.
299
+ * This method might not function properly with future versions of DSE.
286
300
*/
301
+ @ Deprecated
287
302
public boolean isDseGraphEnabled () {
288
303
return dseGraphEnabled ;
289
304
}
0 commit comments