summaryrefslogtreecommitdiff
path: root/spring-context-support/src/main/java/org/springframework/cache/jcache/interceptor/JCacheOperation.java
diff options
context:
space:
mode:
authorAndrej Shadura <andrew.shadura@collabora.co.uk>2019-03-09 12:38:16 +0000
committerAndrej Shadura <andrew.shadura@collabora.co.uk>2019-03-09 12:38:16 +0000
commit673684ec2c6cac26840588b958de098f0c54dd53 (patch)
treec59a0c2767a9ccfa80ca84b30e33d7e39ab1cbcc /spring-context-support/src/main/java/org/springframework/cache/jcache/interceptor/JCacheOperation.java
parentf0e4dab77c149a3dd88691ae95b448a5a7819a32 (diff)
parent139a199c595da36850738b73ee65310ed0a4a94d (diff)
Update upstream source from tag 'upstream/4.3.23_git20190308'
Update to upstream version '4.3.23~git20190308' with Debian dir 6d5a5b12f9bb323cd3b6fb67329b6f998e2ff19a
Diffstat (limited to 'spring-context-support/src/main/java/org/springframework/cache/jcache/interceptor/JCacheOperation.java')
-rw-r--r--spring-context-support/src/main/java/org/springframework/cache/jcache/interceptor/JCacheOperation.java11
1 files changed, 6 insertions, 5 deletions
diff --git a/spring-context-support/src/main/java/org/springframework/cache/jcache/interceptor/JCacheOperation.java b/spring-context-support/src/main/java/org/springframework/cache/jcache/interceptor/JCacheOperation.java
index 94a384dd..7a8a8475 100644
--- a/spring-context-support/src/main/java/org/springframework/cache/jcache/interceptor/JCacheOperation.java
+++ b/spring-context-support/src/main/java/org/springframework/cache/jcache/interceptor/JCacheOperation.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2002-2015 the original author or authors.
+ * Copyright 2002-2019 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -24,9 +24,10 @@ import org.springframework.cache.interceptor.BasicOperation;
import org.springframework.cache.interceptor.CacheResolver;
/**
- * Model the base of JSR-107 cache operation.
- * <p>A cache operation can be statically cached as it does not contain
- * any runtime operation of a specific cache invocation.
+ * Model the base of JSR-107 cache operation through an interface contract.
+ *
+ * <p>A cache operation can be statically cached as it does not contain any
+ * runtime operation of a specific cache invocation.
*
* @author Stephane Nicoll
* @since 4.1
@@ -48,4 +49,4 @@ public interface JCacheOperation<A extends Annotation> extends BasicOperation, C
*/
CacheInvocationParameter[] getAllParameters(Object... values);
-} \ No newline at end of file
+}