+ add missing package javadocs
This commit is contained in:
Costin Leau 2010-12-16 13:19:34 +00:00
parent faf01b0337
commit bbba832904
7 changed files with 51 additions and 1 deletions

View File

@ -0,0 +1,10 @@
/**
*
* JDK 1.5+ annotation for caching demarcation.
* Hooked into Spring's caching interception infrastructure
* via CacheDefinitionSource implementation.
*
*/
package org.springframework.cache.annotation;

View File

@ -0,0 +1,10 @@
/**
*
* Implementation package for java.util.concurrent based
* caches. Provides a CacheManager and Cache implementation
* for usage in a Spring context.
*
*/
package org.springframework.cache.concurrent;

View File

@ -0,0 +1,9 @@
/**
*
* Support package for declarative caching configuration,
* with XML schema being the primary configuration format.
*
*/
package org.springframework.cache.config;

View File

@ -2,7 +2,7 @@
/**
*
* Support classes for the open source cache
* <a href="http://ehcache.sourceforge.net">EHCache</a>,
* <a href="http://ehcache.sourceforge.net">Ehcache</a>,
* allowing to set up an EHCache CacheManager and Caches
* as beans in a Spring context.
*

View File

@ -0,0 +1,8 @@
/**
* AOP-based solution for declarative caching demarcation.
* Builds on the AOP infrastructure in org.springframework.aop.framework.
* Any POJO can be cache advised with Spring.
*
*/
package org.springframework.cache.interceptor;

View File

@ -0,0 +1,7 @@
/**
* Spring's generic cache abstraction.
* Concrete implementations are provided in the subpackages.
*
*/
package org.springframework.cache;

View File

@ -0,0 +1,6 @@
/**
* Support classes for the the org.springframework.cache package.
* Provides abstract classes for cache managers and caches.
*/
package org.springframework.cache.support;