master
Stephane Nicoll 9 years ago
parent 43d72871bd
commit 513c1ea3d9
  1. 1
      spring-context/src/main/java/org/springframework/cache/interceptor/CacheEvictOperation.java
  2. 1
      spring-context/src/main/java/org/springframework/cache/interceptor/CacheOperation.java
  3. 1
      spring-context/src/main/java/org/springframework/cache/interceptor/CachePutOperation.java
  4. 1
      spring-context/src/main/java/org/springframework/cache/interceptor/CacheableOperation.java

@ -20,6 +20,7 @@ package org.springframework.cache.interceptor;
* Class describing a cache 'evict' operation. * Class describing a cache 'evict' operation.
* *
* @author Costin Leau * @author Costin Leau
* @author Marcin Kamionowski
* @since 3.1 * @since 3.1
*/ */
public class CacheEvictOperation extends CacheOperation { public class CacheEvictOperation extends CacheOperation {

@ -27,6 +27,7 @@ import org.springframework.util.Assert;
* *
* @author Costin Leau * @author Costin Leau
* @author Stephane Nicoll * @author Stephane Nicoll
* @author Marcin Kamionowski
* @since 3.1 * @since 3.1
*/ */
public abstract class CacheOperation implements BasicOperation { public abstract class CacheOperation implements BasicOperation {

@ -21,6 +21,7 @@ package org.springframework.cache.interceptor;
* *
* @author Costin Leau * @author Costin Leau
* @author Phillip Webb * @author Phillip Webb
* @author Marcin Kamionowski
* @since 3.1 * @since 3.1
*/ */
public class CachePutOperation extends CacheOperation { public class CachePutOperation extends CacheOperation {

@ -21,6 +21,7 @@ package org.springframework.cache.interceptor;
* *
* @author Costin Leau * @author Costin Leau
* @author Phillip Webb * @author Phillip Webb
* @author Marcin Kamionowski
* @since 3.1 * @since 3.1
*/ */
public class CacheableOperation extends CacheOperation { public class CacheableOperation extends CacheOperation {

Loading…
Cancel
Save