Class JCacheOperationSourcePointcut
java.lang.Object
org.springframework.aop.support.StaticMethodMatcher
org.springframework.aop.support.StaticMethodMatcherPointcut
org.springframework.cache.jcache.interceptor.JCacheOperationSourcePointcut
- All Implemented Interfaces:
Serializable
,MethodMatcher
,Pointcut
@Deprecated(since="6.0.10",
forRemoval=true)
public abstract class JCacheOperationSourcePointcut
extends StaticMethodMatcherPointcut
implements Serializable
Deprecated, for removal: This API element is subject to removal in a future version.
since 6.0.10, as it is not used by the framework anymore
A Pointcut that matches if the underlying
JCacheOperationSource
has an operation for a given method.- Since:
- 4.1
- Author:
- Stephane Nicoll
- See Also:
-
Field Summary
Fields inherited from interface org.springframework.aop.MethodMatcher
TRUE
-
Constructor Summary
ConstructorDescriptionDeprecated, for removal: This API element is subject to removal in a future version. -
Method Summary
Modifier and TypeMethodDescriptionboolean
Deprecated, for removal: This API element is subject to removal in a future version.protected abstract JCacheOperationSource
Deprecated, for removal: This API element is subject to removal in a future version.Obtain the underlyingJCacheOperationSource
(may benull
).int
hashCode()
Deprecated, for removal: This API element is subject to removal in a future version.boolean
Deprecated, for removal: This API element is subject to removal in a future version.Perform static checking to determine whether the given method matches.toString()
Deprecated, for removal: This API element is subject to removal in a future version.Methods inherited from class org.springframework.aop.support.StaticMethodMatcherPointcut
getClassFilter, getMethodMatcher, setClassFilter
Methods inherited from class org.springframework.aop.support.StaticMethodMatcher
isRuntime, matches
-
Constructor Details
-
JCacheOperationSourcePointcut
public JCacheOperationSourcePointcut()Deprecated, for removal: This API element is subject to removal in a future version.
-
-
Method Details
-
matches
Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:MethodMatcher
Perform static checking to determine whether the given method matches.If this method returns
false
or ifMethodMatcher.isRuntime()
returnsfalse
, no runtime check (i.e. noMethodMatcher.matches(Method, Class, Object[])
call) will be made.- Specified by:
matches
in interfaceMethodMatcher
- Parameters:
method
- the candidate methodtargetClass
- the target class- Returns:
- whether this method matches statically
-
getCacheOperationSource
Deprecated, for removal: This API element is subject to removal in a future version.Obtain the underlyingJCacheOperationSource
(may benull
). To be implemented by subclasses. -
equals
Deprecated, for removal: This API element is subject to removal in a future version. -
hashCode
public int hashCode()Deprecated, for removal: This API element is subject to removal in a future version. -
toString
Deprecated, for removal: This API element is subject to removal in a future version.
-