All Downloads are FREE. Search and download functionalities are using the official Maven repository.

javax.cache.annotation.CacheInvocationContext Maven / Gradle / Ivy

There is a newer version: 1.1.1
Show newest version
/**
 *  Copyright (c) 2011-2013 Terracotta, Inc.
 *  Copyright (c) 2011-2013 Oracle and/or its affiliates.
 *
 *  All rights reserved. Use is subject to license terms.
 */

package javax.cache.annotation;

import java.lang.annotation.Annotation;

/**
 * Runtime information about an intercepted method invocation for a method
 * annotated with {@link CacheResult}, {@link CachePut}, {@link CacheRemoveEntry},
 * or {@link CacheRemoveAll}
 * 

* Used with {@link CacheResolver#resolveCache(CacheInvocationContext)} to * determine the {@link javax.cache.Cache} to use at runtime for the method * invocation. * * @param The type of annotation this context information is for. One of * {@link * javax.cache.annotation.CacheResult}, * {@link javax.cache.annotation.CachePut}, {@link * javax.cache.annotation.CacheRemoveEntry}, or * {@link javax.cache.annotation.CacheRemoveAll}. * @author Eric Dalquist * @see CacheResolver */ public interface CacheInvocationContext extends CacheMethodDetails { /** * @return The object the intercepted method was invoked on. */ Object getTarget(); /** * Returns a clone of the array of all method parameters. * * @return An array of all parameters for the annotated method */ CacheInvocationParameter[] getAllParameters(); /** * Return an object of the specified type to allow access to the * provider-specific API. If the provider's * implementation does not support the specified class, the {@link * IllegalArgumentException} is thrown. * * @param cls he class of the object to be returned. This is normally either the * underlying implementation class or an interface that it * implements. * @return an instance of the specified class * @throws IllegalArgumentException if the provider doesn't support the * specified * class. */ T unwrap(java.lang.Class cls); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy