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

com.thegoate.utils.UtilCache Maven / Gradle / Ivy

There is a newer version: 0.15.17.202312051550
Show newest version
package com.thegoate.utils;

import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;

import org.atteo.classindex.IndexAnnotated;

import com.thegoate.annotations.GoateDescription;
import com.thegoate.info.Info;

/**
 * Created by Eric Angeli on 7/6/2020.
 */
@Retention(RetentionPolicy.RUNTIME)
@GoateDescription(description = "Identifies get utilities.")
@Info
@IndexAnnotated
@Inherited
public @interface UtilCache {
	String name() default "kanto";
	boolean clear() default false;
	boolean useCache() default false;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy