DATACASS-379 - Add package documentation.

This commit is contained in:
Mark Paluch
2017-01-03 09:18:44 +01:00
parent 18564cb6ca
commit cc00fe735b
23 changed files with 92 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
/**
* Spring Java configuration for Spring CQL.
*/
package org.springframework.cassandra.config.java;

View File

@@ -0,0 +1,4 @@
/**
* Spring CQL {@link org.springframework.beans.factory.FactoryBean factory beans} and configuration.
*/
package org.springframework.cassandra.config;

View File

@@ -0,0 +1,4 @@
/**
* Spring XML namespace configuration for Spring CQL.
*/
package org.springframework.cassandra.config.xml;

View File

@@ -0,0 +1,4 @@
/**
* CQL specific converters.
*/
package org.springframework.cassandra.core.converter;

View File

@@ -0,0 +1,4 @@
/**
* CQL generators for Keyspace object actions.
*/
package org.springframework.cassandra.core.cql.generator;

View File

@@ -0,0 +1,4 @@
/**
* CQL support.
*/
package org.springframework.cassandra.core.cql;

View File

@@ -0,0 +1,4 @@
/**
* Keyspace object action specifications such as {@code CREATE TABLE}, {@code DROP INDEX}.
*/
package org.springframework.cassandra.core.keyspace;

View File

@@ -0,0 +1,4 @@
/**
* CQL core support.
*/
package org.springframework.cassandra.core;

View File

@@ -0,0 +1,4 @@
/**
* CQL support classes.
*/
package org.springframework.cassandra.core.support;

View File

@@ -0,0 +1,4 @@
/**
* Spring Data's Cassandra specific Data Access Exceptions.
*/
package org.springframework.cassandra.support.exception;

View File

@@ -0,0 +1,4 @@
/**
* CQL support classes and Exception translation.
*/
package org.springframework.cassandra.support;

View File

@@ -0,0 +1,4 @@
/**
* Spring Java configuration for Spring Data Cassandra.
*/
package org.springframework.data.cassandra.config.java;

View File

@@ -0,0 +1,4 @@
/**
* Spring Data Cassandra {@link org.springframework.beans.factory.FactoryBean factory beans} and configuration.
*/
package org.springframework.data.cassandra.config;

View File

@@ -0,0 +1,4 @@
/**
* Spring XML namespace configuration for Spring Data Cassandra.
*/
package org.springframework.data.cassandra.config.xml;

View File

@@ -0,0 +1,4 @@
/**
* Spring Data Cassandra specific converter infrastructure.
*/
package org.springframework.data.cassandra.convert;

View File

@@ -0,0 +1,4 @@
/**
* Apache Cassandra core support.
*/
package org.springframework.data.cassandra.core;

View File

@@ -0,0 +1,4 @@
/**
* Infrastructure for the Apache Cassandra row-to-object mapping subsystem.
*/
package org.springframework.data.cassandra.mapping;

View File

@@ -0,0 +1,4 @@
/**
* Spring Data's CQL abstraction.
*/
package org.springframework.data.cassandra;

View File

@@ -0,0 +1,4 @@
/**
* CDI support for Apache Cassandra specific repository implementation.
*/
package org.springframework.data.cassandra.repository.cdi;

View File

@@ -0,0 +1,4 @@
/**
* Support infrastructure for the configuration of Apache Cassandra specific repositories.
*/
package org.springframework.data.cassandra.repository.config;

View File

@@ -0,0 +1,4 @@
/**
* Apache Cassandra specific repository implementation.
*/
package org.springframework.data.cassandra.repository;

View File

@@ -0,0 +1,4 @@
/**
* Query derivation mechanism for Apache Cassandra specific repositories.
*/
package org.springframework.data.cassandra.repository.query;

View File

@@ -0,0 +1,4 @@
/**
* Support infrastructure for query derivation of Apache Cassandra specific repositories.
*/
package org.springframework.data.cassandra.repository.support;