Polish Javadoc
This commit is contained in:
@@ -27,7 +27,7 @@ import java.util.Set;
|
||||
public interface BasicOperation {
|
||||
|
||||
/**
|
||||
* Return the cache name(s) associated to the operation.
|
||||
* Return the cache name(s) associated with the operation.
|
||||
*/
|
||||
Set<String> getCacheNames();
|
||||
|
||||
|
||||
@@ -19,10 +19,10 @@ package org.springframework.cache.interceptor;
|
||||
import java.lang.reflect.Method;
|
||||
|
||||
/**
|
||||
* Represent the context of the invocation of a cache operation.
|
||||
* Representation of the context of the invocation of a cache operation.
|
||||
*
|
||||
* <p>The cache operation is static and independent of a particular invocation,
|
||||
* this gathers the operation and a particular invocation.
|
||||
* <p>The cache operation is static and independent of a particular invocation;
|
||||
* this interface gathers the operation and a particular invocation.
|
||||
*
|
||||
* @author Stephane Nicoll
|
||||
* @since 4.1
|
||||
@@ -30,22 +30,22 @@ import java.lang.reflect.Method;
|
||||
public interface CacheOperationInvocationContext<O extends BasicOperation> {
|
||||
|
||||
/**
|
||||
* Return the cache operation
|
||||
* Return the cache operation.
|
||||
*/
|
||||
O getOperation();
|
||||
|
||||
/**
|
||||
* Return the target instance on which the method was invoked
|
||||
* Return the target instance on which the method was invoked.
|
||||
*/
|
||||
Object getTarget();
|
||||
|
||||
/**
|
||||
* Return the method
|
||||
* Return the method which was invoked.
|
||||
*/
|
||||
Method getMethod();
|
||||
|
||||
/**
|
||||
* Return the argument used to invoke the method
|
||||
* Return the argument list used to invoke the method.
|
||||
*/
|
||||
Object[] getArgs();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user