javax.cache.annotation.CacheRemoveAll Maven / Gradle / Ivy
/**
* 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 javax.enterprise.util.Nonbinding;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* When a method annotated with {@link CacheRemoveAll} is invoked all elements in
* the specified cache will be removed via the
* {@link javax.cache.Cache#removeAll()} method
*
* The default behavior is to call {@link javax.cache.Cache#removeAll()} after the
* annotated method is invoked, this behavior can be changed by setting {@link
* #afterInvocation()} to false in which case {@link javax.cache.Cache#removeAll()}
* will be called before the annotated method is invoked.
*
* Example of removing all Domain objects from the "domainCache". {@link
* javax.cache.Cache#removeAll()} will be called after deleteAllDomains() returns
* successfully.
*
* package my.app;
*
* public class DomainDao {
* @CacheRemoveAll(cacheName="domainCache")
* public void deleteAllDomains() {
* ...
* }
* }
*
* Exception Handling, only used if {@link #afterInvocation()} is true.
*
* - If {@link #evictFor()} and {@link #noEvictFor()} are both empty then all
* exceptions prevent the removeAll
* - If {@link #evictFor()} is specified and {@link #noEvictFor()} is not
* specified then only exceptions which pass an instanceof check against the
* evictFor list result in a removeAll
* - If {@link #noEvictFor()} is specified and {@link #evictFor()} is not
* specified then all exceptions which do not pass an instanceof check against the
* noEvictFor result in a removeAll
* - If {@link #evictFor()} and {@link #noEvictFor()} are both specified then
* exceptions which pass an instanceof check against the evictFor list but do not
* pass an instanceof check against the noEvictFor list result in a removeAll
*
*
* @author Eric Dalquist
* @author Rick Hightower
* @since 1.0
*/
@Target({ElementType.METHOD, ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
public @interface CacheRemoveAll {
/**
* /**
* The name of the cache.
*
* If not specified defaults first to {@link CacheDefaults#cacheName()} an if
* that is not set it defaults to:
* package.name.ClassName.methodName(package.ParameterType,package.ParameterType)
*/
@Nonbinding String cacheName() default "";
/**
* When {@link javax.cache.Cache#removeAll()} should be called. If true it is
* called after the annotated method
* invocation completes successfully. If false it is called before the annotated
* method is invoked.
*
* Defaults to true.
*
* If true and the annotated method throws an exception the put will not be
* executed.
*/
@Nonbinding boolean afterInvocation() default true;
/**
* The {@link CacheResolverFactory} used to find the {@link CacheResolver} to
* use
* at runtime.
*
* The default resolver pair will resolve the cache by name from the default
* {@link javax.cache.CacheManager}
*/
@Nonbinding Class extends CacheResolverFactory> cacheResolverFactory()
default CacheResolverFactory.class;
/**
* Defines zero (0) or more exception {@link Class classes}, which must be a
* subclass of {@link Throwable}, indicating which exception types must cause
* a cache removeAll. Only used if {@link #afterInvocation()} is true.
*/
@Nonbinding Class extends Throwable>[] evictFor() default {};
/**
* Defines zero (0) or more exception {@link Class Classes}, which must be a
* subclass of {@link Throwable}, indicating which exception types must
* not
* cause a cache removeAll. Only used if {@link #afterInvocation()} is true.
*/
@Nonbinding Class extends Throwable>[] noEvictFor() default {};
}