You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: spring-data-cassandra/src/main/java/org/springframework/data/cassandra/config/AbstractCassandraConfiguration.java
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -59,11 +59,10 @@ public abstract class AbstractCassandraConfiguration extends AbstractSessionConf
59
59
private@NullableClassLoaderbeanClassLoader;
60
60
61
61
/**
62
-
* Creates a {@link CassandraConverter} using the configured {@link #cassandraMapping()}. Will apply all specified
63
-
* {@link #customConversions()}.
62
+
* Creates a {@link CassandraConverter} using the configured {@link #cassandraMappingContext(CassandraManagedTypes)}.
63
+
* Will apply all specified {@link #customConversions()}.
64
64
*
65
65
* @return {@link CassandraConverter} used to convert Java and Cassandra value types during the mapping process.
66
-
* @see #cassandraMapping()
67
66
* @see #customConversions()
68
67
*/
69
68
@Bean
@@ -153,8 +152,9 @@ public CassandraAdminTemplate cassandraTemplate() {
153
152
154
153
/**
155
154
* Register custom {@link Converter}s in a {@link CustomConversions} object if required. These
156
-
* {@link CustomConversions} will be registered with the {@link #cassandraConverter()} and {@link #cassandraMapping()}
157
-
* . Returns an empty {@link CustomConversions} instance by default.
155
+
* {@link CustomConversions} will be registered with the {@link #cassandraConverter()} and
156
+
* {@link #cassandraMappingContext(CassandraManagedTypes)}. Returns an empty {@link CustomConversions} instance by
157
+
* default.
158
158
*
159
159
* @return must not be {@literal null}.
160
160
* @since 1.5
@@ -235,7 +235,7 @@ public SchemaAction getSchemaAction() {
235
235
}
236
236
237
237
/**
238
-
* Creates a {@link KeyspacePopulator} to cleanup the keyspace.
238
+
* Creates a {@link KeyspacePopulator} to clean up the keyspace.
239
239
*
240
240
* @return the {@link KeyspacePopulator} or {@code null} if none configured.
Copy file name to clipboardExpand all lines: spring-data-cassandra/src/main/java/org/springframework/data/cassandra/core/cql/keyspace/AlterTableSpecification.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -75,7 +75,7 @@ public static AlterTableSpecification alterTable(CqlIdentifier tableName) {
75
75
/**
76
76
* Entry point into the {@link AlterTableSpecification}'s fluent API given {@code tableName} to alter a table.
77
77
* Convenient if imported statically. Uses the default keyspace if {@code keyspace} is null; otherwise, of the
78
-
* {@code keyspace} is not {@link null}, then the table name is prefixed with {@code keyspace}.
78
+
* {@code keyspace} is not {@literal null}, then the table name is prefixed with {@code keyspace}.
Copy file name to clipboardExpand all lines: spring-data-cassandra/src/main/java/org/springframework/data/cassandra/core/cql/keyspace/AlterUserTypeSpecification.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -65,7 +65,7 @@ public static AlterUserTypeSpecification alterType(CqlIdentifier typeName) {
65
65
/**
66
66
* Entry point into the {@link AlterUserTypeSpecification}'s fluent API given {@code typeName} to alter a type.
67
67
* Convenient if imported statically. Uses the default keyspace if {@code keyspace} is null; otherwise, of the
68
-
* {@code keyspace} is not {@link null}, then the table name is prefixed with {@code keyspace}.
68
+
* {@code keyspace} is not {@literal null}, then the table name is prefixed with {@code keyspace}.
Copy file name to clipboardExpand all lines: spring-data-cassandra/src/main/java/org/springframework/data/cassandra/core/cql/keyspace/CreateIndexSpecification.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -89,7 +89,7 @@ public static CreateIndexSpecification createIndex(CqlIdentifier indexName) {
89
89
/**
90
90
* Entry point into the {@link CreateIndexSpecification}'s fluent API given {@code keyspace} and {@code indexName} to
91
91
* create an index. Convenient if imported statically. Uses the default keyspace if {@code keyspace} is null;
92
-
* otherwise, of the {@code keyspace} is not {@link null}, then the index and table name are prefixed with
92
+
* otherwise, of the {@code keyspace} is not {@literal null}, then the index and table name are prefixed with
Copy file name to clipboardExpand all lines: spring-data-cassandra/src/main/java/org/springframework/data/cassandra/core/cql/keyspace/CreateTableSpecification.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -58,7 +58,7 @@ public static CreateTableSpecification createTable(CqlIdentifier tableName) {
58
58
/**
59
59
* Entry point into the {@link CreateTableSpecification}'s fluent API given {@code tableName} to create a table.
60
60
* Convenient if imported statically. Uses the default keyspace if {@code keyspace} is null; otherwise, of the
61
-
* {@code keyspace} is not {@link null}, then the table name is prefixed with {@code keyspace}.
61
+
* {@code keyspace} is not {@literal null}, then the table name is prefixed with {@code keyspace}.
Copy file name to clipboardExpand all lines: spring-data-cassandra/src/main/java/org/springframework/data/cassandra/core/cql/keyspace/CreateUserTypeSpecification.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -62,7 +62,7 @@ public static CreateUserTypeSpecification createType(CqlIdentifier typeName) {
62
62
/**
63
63
* Entry point into the {@link CreateUserTypeSpecification}'s fluent API given {@code typeName} to create a type.
64
64
* Convenient if imported statically. Uses the default keyspace if {@code keyspace} is null; otherwise, of the
65
-
* {@code keyspace} is not {@link null}, then the UDT name is prefixed with {@code keyspace}.
65
+
* {@code keyspace} is not {@literal null}, then the UDT name is prefixed with {@code keyspace}.
Copy file name to clipboardExpand all lines: spring-data-cassandra/src/main/java/org/springframework/data/cassandra/core/cql/keyspace/DropIndexSpecification.java
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -54,8 +54,8 @@ public static DropIndexSpecification dropIndex(CqlIdentifier indexName) {
54
54
55
55
/**
56
56
* Create a new {@link DropIndexSpecification} for the given {@code indexName}. Uses the default keyspace if
57
-
* {@code keyspace} is null; otherwise, of the {@code keyspace} is not {@link null}, then the index name is prefixed
58
-
* with {@code keyspace}.
57
+
* {@code keyspace} is null; otherwise, of the {@code keyspace} is not {@literal null}, then the index name is
Copy file name to clipboardExpand all lines: spring-data-cassandra/src/main/java/org/springframework/data/cassandra/core/cql/keyspace/DropTableSpecification.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -59,7 +59,7 @@ public static DropTableSpecification dropTable(CqlIdentifier tableName) {
59
59
/**
60
60
* Entry point into the {@link DropTableSpecification}'s fluent API given {@code tableName} to drop a table.
61
61
* Convenient if imported statically. Uses the default keyspace if {@code keyspace} is null; otherwise, of the
62
-
* {@code keyspace} is not {@link null}, then the table name is prefixed with {@code keyspace}.
62
+
* {@code keyspace} is not {@literal null}, then the table name is prefixed with {@code keyspace}.
Copy file name to clipboardExpand all lines: spring-data-cassandra/src/main/java/org/springframework/data/cassandra/core/cql/keyspace/DropUserTypeSpecification.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -61,7 +61,7 @@ public static DropUserTypeSpecification dropType(CqlIdentifier typeName) {
61
61
/**
62
62
* Entry point into the {@link DropUserTypeSpecification}'s fluent API given {@code typeName} to drop a type.
63
63
* Convenient if imported statically. Uses the default keyspace if {@code keyspace} is null; otherwise, of the
64
-
* {@code keyspace} is not {@link null}, then the UDT name is prefixed with {@code keyspace}.
64
+
* {@code keyspace} is not {@literal null}, then the UDT name is prefixed with {@code keyspace}.
65
65
*
66
66
* @param keyspace can be {@code null}.
67
67
* @param typeName must not be {@code null} or empty.
Copy file name to clipboardExpand all lines: spring-data-cassandra/src/main/java/org/springframework/data/cassandra/core/cql/keyspace/SpecificationBuilder.java
+17-17Lines changed: 17 additions & 17 deletions
Original file line number
Diff line number
Diff line change
@@ -125,7 +125,7 @@ public static CreateTableSpecification createTable(String tableName) {
125
125
/**
126
126
* Entry point into the {@link CreateTableSpecification}'s fluent API given {@code tableName} to create a table.
127
127
* Convenient if imported statically. Uses the default keyspace if {@code keyspace} is null; otherwise, of the
128
-
* {@code keyspace} is not {@link null}, then the table name is prefixed with {@code keyspace}.
128
+
* {@code keyspace} is not {@literal null}, then the table name is prefixed with {@code keyspace}.
129
129
*
130
130
* @param keyspace can be {@literal null}.
131
131
* @param tableName must not be {@literal null}.
@@ -149,7 +149,7 @@ public static CreateTableSpecification createTable(CqlIdentifier tableName) {
149
149
/**
150
150
* Entry point into the {@link CreateTableSpecification}'s fluent API given {@code tableName} to create a table.
151
151
* Convenient if imported statically. Uses the default keyspace if {@code keyspace} is null; otherwise, of the
152
-
* {@code keyspace} is not {@link null}, then the table name is prefixed with {@code keyspace}.
152
+
* {@code keyspace} is not {@literal null}, then the table name is prefixed with {@code keyspace}.
153
153
*
154
154
* @param keyspace can be {@literal null}.
155
155
* @param tableName must not be {@literal null}.
@@ -173,7 +173,7 @@ public static AlterTableSpecification alterTable(String tableName) {
173
173
/**
174
174
* Entry point into the {@link AlterTableSpecification}'s fluent API given {@code tableName} to alter a table.
175
175
* Convenient if imported statically. Uses the default keyspace if {@code keyspace} is null; otherwise, of the
176
-
* {@code keyspace} is not {@link null}, then the table name is prefixed with {@code keyspace}.
176
+
* {@code keyspace} is not {@literal null}, then the table name is prefixed with {@code keyspace}.
177
177
*
178
178
* @param keyspace can be {@literal null}.
179
179
* @param tableName must not be {@literal null}.
@@ -197,7 +197,7 @@ public static AlterTableSpecification alterTable(CqlIdentifier tableName) {
197
197
/**
198
198
* Entry point into the {@link AlterTableSpecification}'s fluent API given {@code tableName} to alter a table.
199
199
* Convenient if imported statically. Uses the default keyspace if {@code keyspace} is null; otherwise, of the
200
-
* {@code keyspace} is not {@link null}, then the table name is prefixed with {@code keyspace}.
200
+
* {@code keyspace} is not {@literal null}, then the table name is prefixed with {@code keyspace}.
201
201
*
202
202
* @param keyspace can be {@literal null}.
203
203
* @param tableName must not be {@literal null}.
@@ -221,7 +221,7 @@ public static DropTableSpecification dropTable(String tableName) {
221
221
/**
222
222
* Entry point into the {@link DropTableSpecification}'s fluent API given {@code tableName} to drop a table.
223
223
* Convenient if imported statically. Uses the default keyspace if {@code keyspace} is null; otherwise, of the
224
-
* {@code keyspace} is not {@link null}, then the table name is prefixed with {@code keyspace}.
224
+
* {@code keyspace} is not {@literal null}, then the table name is prefixed with {@code keyspace}.
225
225
*
226
226
* @param keyspace can be {@literal null}.
227
227
* @param tableName must not be {@literal null}.
@@ -245,7 +245,7 @@ public static DropTableSpecification dropTable(CqlIdentifier tableName) {
245
245
/**
246
246
* Entry point into the {@link DropTableSpecification}'s fluent API given {@code tableName} to drop a table.
247
247
* Convenient if imported statically. Uses the default keyspace if {@code keyspace} is null; otherwise, of the
248
-
* {@code keyspace} is not {@link null}, then the table name is prefixed with {@code keyspace}.
248
+
* {@code keyspace} is not {@literal null}, then the table name is prefixed with {@code keyspace}.
249
249
*
250
250
* @param keyspace can be {@literal null}.
251
251
* @param tableName must not be {@literal null}.
@@ -371,7 +371,7 @@ public static CreateIndexSpecification createIndex(CqlIdentifier indexName) {
371
371
/**
372
372
* Entry point into the {@link CreateIndexSpecification}'s fluent API given {@code keyspace} and {@code indexName} to
373
373
* create an index. Convenient if imported statically. Uses the default keyspace if {@code keyspace} is null;
374
-
* otherwise, of the {@code keyspace} is not {@link null}, then the index and table name are prefixed with
374
+
* otherwise, of the {@code keyspace} is not {@literal null}, then the index and table name are prefixed with
375
375
* {@code keyspace}.
376
376
*
377
377
* @param keyspace can be {@literal null}.
@@ -395,8 +395,8 @@ public static DropIndexSpecification dropIndex(String indexName) {
395
395
396
396
/**
397
397
* Create a new {@link DropIndexSpecification} for the given {@code indexName}. Uses the default keyspace if
398
-
* {@code keyspace} is null; otherwise, of the {@code keyspace} is not {@link null}, then the index name is prefixed
399
-
* with {@code keyspace}.
398
+
* {@code keyspace} is null; otherwise, of the {@code keyspace} is not {@literal null}, then the index name is
399
+
* prefixed with {@code keyspace}.
400
400
*
401
401
* @param keyspace can be {@literal null}.
402
402
* @param indexName must not be {@literal null}.
@@ -418,8 +418,8 @@ public static DropIndexSpecification dropIndex(CqlIdentifier indexName) {
418
418
419
419
/**
420
420
* Create a new {@link DropIndexSpecification} for the given {@code indexName}. Uses the default keyspace if
421
-
* {@code keyspace} is null; otherwise, of the {@code keyspace} is not {@link null}, then the index name is prefixed
422
-
* with {@code keyspace}.
421
+
* {@code keyspace} is null; otherwise, of the {@code keyspace} is not {@literal null}, then the index name is
422
+
* prefixed with {@code keyspace}.
423
423
*
424
424
* @param keyspace can be {@literal null}.
425
425
* @param indexName must not be {@literal null}.
@@ -447,7 +447,7 @@ public static CreateUserTypeSpecification createType(String typeName) {
447
447
/**
448
448
* Entry point into the {@link CreateUserTypeSpecification}'s fluent API given {@code name} to create a type.
449
449
* Convenient if imported statically. Uses the default keyspace if {@code keyspace} is null; otherwise, of the
450
-
* {@code keyspace} is not {@link null}, then the UDT name is prefixed with {@code keyspace}.
450
+
* {@code keyspace} is not {@literal null}, then the UDT name is prefixed with {@code keyspace}.
451
451
*
452
452
* @param keyspace can be {@literal null}.
453
453
* @param typeName must not {@literal null}.
@@ -471,7 +471,7 @@ public static CreateUserTypeSpecification createType(CqlIdentifier name) {
471
471
/**
472
472
* Entry point into the {@link CreateUserTypeSpecification}'s fluent API given {@code typeName} to create a type.
473
473
* Convenient if imported statically. Uses the default keyspace if {@code keyspace} is null; otherwise, of the
474
-
* {@code keyspace} is not {@link null}, then the UDT name is prefixed with {@code keyspace}.
474
+
* {@code keyspace} is not {@literal null}, then the UDT name is prefixed with {@code keyspace}.
475
475
*
476
476
* @param keyspace can be {@literal null}.
477
477
* @param name must not {@literal null}.
@@ -495,7 +495,7 @@ public static AlterUserTypeSpecification alterType(String typeName) {
495
495
/**
496
496
* Entry point into the {@link AlterUserTypeSpecification}'s fluent API given {@code typeName} to alter a type.
497
497
* Convenient if imported statically. Uses the default keyspace if {@code keyspace} is null; otherwise, of the
498
-
* {@code keyspace} is not {@link null}, then the table name is prefixed with {@code keyspace}.
498
+
* {@code keyspace} is not {@literal null}, then the table name is prefixed with {@code keyspace}.
0 commit comments