Added package-info.java files to explain package purposes.

This commit is contained in:
Oliver Gierke
2010-12-29 14:43:00 +01:00
parent 36f4553be9
commit 640388b83e
7 changed files with 37 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
/**
* Central domain abstractions especially to be used in combination with the {@link org.springframework.data.repository.Repository} abstraction.
*
* @see org.springframework.data.repository.Repository
*/
package org.springframework.data.domain;

View File

@@ -0,0 +1,5 @@
/**
* Base classes for repository namespace implementations.
*/
package org.springframework.data.repository.config;

View File

@@ -0,0 +1,5 @@
/**
* Central interfaces for repository abstraction.
*/
package org.springframework.data.repository;

View File

@@ -0,0 +1,5 @@
/**
* Support classes to work with query methods.
*/
package org.springframework.data.repository.query;

View File

@@ -0,0 +1,5 @@
/**
* Support classes for parsing queries from method names.
*/
package org.springframework.data.repository.query.parser;

View File

@@ -0,0 +1,5 @@
/**
* Base classes to implement repositories for various data stores.
*/
package org.springframework.data.repository.support;

View File

@@ -0,0 +1,5 @@
/**
* Utility classes for repository implementations.
*/
package org.springframework.data.repository.util;