Java Code Examples for javax.cache.annotation.CacheInvocationContext#getCacheName()
The following examples show how to use
javax.cache.annotation.CacheInvocationContext#getCacheName() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: TestableCacheResolver.java From spring-analysis-note with MIT License | 5 votes |
@Override public <K, V> Cache<K, V> resolveCache(CacheInvocationContext<? extends Annotation> cacheInvocationContext) { String cacheName = cacheInvocationContext.getCacheName(); Cache<K, V> mock = mock(Cache.class); given(mock.getName()).willReturn(cacheName); return mock; }
Example 2
Source File: TestableCacheResolver.java From java-technology-stack with MIT License | 5 votes |
@Override public <K, V> Cache<K, V> resolveCache(CacheInvocationContext<? extends Annotation> cacheInvocationContext) { String cacheName = cacheInvocationContext.getCacheName(); Cache<K, V> mock = mock(Cache.class); given(mock.getName()).willReturn(cacheName); return mock; }
Example 3
Source File: TestableCacheResolver.java From spring4-understanding with Apache License 2.0 | 5 votes |
@Override public <K, V> Cache<K, V> resolveCache(CacheInvocationContext<? extends Annotation> cacheInvocationContext) { String cacheName = cacheInvocationContext.getCacheName(); Cache<K, V> mock = mock(Cache.class); given(mock.getName()).willReturn(cacheName); return mock; }