Example usage for org.springframework.cache.jcache.interceptor DefaultCacheInvocationContext DefaultCacheInvocationContext

List of usage examples for org.springframework.cache.jcache.interceptor DefaultCacheInvocationContext DefaultCacheInvocationContext

Introduction

In this page you can find the example usage for org.springframework.cache.jcache.interceptor DefaultCacheInvocationContext DefaultCacheInvocationContext.

Prototype

public DefaultCacheInvocationContext(JCacheOperation<A> operation, Object target, Object[] args) 

Source Link

Usage

From source file:org.springframework.cache.jcache.interceptor.JCacheAspectSupport.java

@SuppressWarnings("unchecked")
private CacheOperationInvocationContext<?> createCacheOperationInvocationContext(Object target, Object[] args,
        JCacheOperation<?> operation) {

    return new DefaultCacheInvocationContext<>((JCacheOperation<Annotation>) operation, target, args);
}