Added package-info.java files to explain package purposes.
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
/**
|
||||
* Base classes for repository namespace implementations.
|
||||
*/
|
||||
package org.springframework.data.repository.config;
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
/**
|
||||
* Central interfaces for repository abstraction.
|
||||
*/
|
||||
package org.springframework.data.repository;
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
/**
|
||||
* Support classes to work with query methods.
|
||||
*/
|
||||
package org.springframework.data.repository.query;
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
/**
|
||||
* Support classes for parsing queries from method names.
|
||||
*/
|
||||
package org.springframework.data.repository.query.parser;
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
/**
|
||||
* Base classes to implement repositories for various data stores.
|
||||
*/
|
||||
package org.springframework.data.repository.support;
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
/**
|
||||
* Utility classes for repository implementations.
|
||||
*/
|
||||
package org.springframework.data.repository.util;
|
||||
|
||||
Reference in New Issue
Block a user