Uses of Class
org.springframework.data.cassandra.core.cql.keyspace.DropKeyspaceSpecification
Package
Description
Spring Data Cassandra
factory beans
and configuration.CQL generators for Keyspace object actions.
Keyspace object action specifications such as
CREATE TABLE
, DROP INDEX
.-
Uses of DropKeyspaceSpecification in org.springframework.data.cassandra.config
Modifier and TypeMethodDescriptionprotected List<DropKeyspaceSpecification>
AbstractSessionConfiguration.getKeyspaceDrops()
Returns the list of keyspace drops to be run before shutdown.Modifier and TypeMethodDescriptionvoid
CqlSessionFactoryBean.setKeyspaceDrops
(List<DropKeyspaceSpecification> specifications) -
Uses of DropKeyspaceSpecification in org.springframework.data.cassandra.core.cql.generator
Modifier and TypeMethodDescriptionstatic String
DropKeyspaceCqlGenerator.toCql
(DropKeyspaceSpecification specification) -
Uses of DropKeyspaceSpecification in org.springframework.data.cassandra.core.cql.keyspace
Modifier and TypeMethodDescriptionstatic DropKeyspaceSpecification
DropKeyspaceSpecification.dropKeyspace
(com.datastax.oss.driver.api.core.CqlIdentifier name) Create a newDropKeyspaceSpecification
for the givenname
.static DropKeyspaceSpecification
DropKeyspaceSpecification.dropKeyspace
(String name) Create a newDropKeyspaceSpecification
for the givenname
.static DropKeyspaceSpecification
DropKeyspaceSpecification.dropKeyspace
(KeyspaceIdentifier name) Deprecated.DropKeyspaceSpecification.ifExists()
Causes the inclusion of anIF EXISTS
clause.DropKeyspaceSpecification.ifExists
(boolean ifExists) Toggles the inclusion of anIF EXISTS
clause.
dropKeyspace(CqlIdentifier)
.