Added package-info.java files.

This commit is contained in:
Oliver Gierke
2010-12-29 14:44:16 +01:00
parent 2c17f4cab1
commit 6ddc56dbb2
7 changed files with 32 additions and 1 deletions

View File

@@ -0,0 +1,5 @@
/**
* JPA specific support classes to implement domain classes.
*/
package org.springframework.data.jpa.domain;

View File

@@ -0,0 +1,5 @@
/**
* Implementation classes for auditing with JPA.
*/
package org.springframework.data.jpa.domain.support;

View File

@@ -1,4 +1,5 @@
/**
* Support classes for Spring namespace configuration.
* Classes for JPA namespace configuration.
*/
package org.springframework.data.jpa.repository.config;

View File

@@ -0,0 +1,5 @@
/**
* Interfaces and annotations for JPA specific repositories.
*/
package org.springframework.data.jpa.repository;

View File

@@ -0,0 +1,5 @@
/**
* Query implementation to exectue queries against JPA.
*/
package org.springframework.data.jpa.repository.query;

View File

@@ -0,0 +1,5 @@
/**
* JPA repository implementations.
*/
package org.springframework.data.jpa.repository.support;

View File

@@ -0,0 +1,5 @@
/**
* JPA specific utitlity functions.
*/
package org.springframework.data.jpa.repository.utils;