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

dev.voidframework.cache.CacheRemove Maven / Gradle / Ivy

package dev.voidframework.cache;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * Annotation indicating that the cache must be evicted.
 */
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface CacheRemove {

    /**
     * Key of the cache to evict.
     *
     * @return Key of the cache
     */
    String key() default "{class}.{method}";

    /**
     * Defines exception classes indicating the exception types that must cause a cache eviction. If
     * classes are specified, the cache will only be evicted if the specified exceptions are thrown.
     *
     * @return Class[] of Exceptions
     */
    Class[] evictOn() default {};

    /**
     * Defines exception Classes indicating the exception types that must not cause a cache eviction.
     *
     * @return Class[] of Exceptions
     */
    Class[] noEvictOn() default {};
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy