Newer
Older
simple-database / src / nl / astraeus / database / annotations / Cache.java
rnentjes on 29 Jan 2014 287 bytes Add model, add pages
package nl.astraeus.database.annotations;

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

/**
 * User: rnentjes
 * Date: 11/13/13
 * Time: 4:13 PM
 */
@Retention(RetentionPolicy.RUNTIME)
public @interface Cache {

    int maxSize() default 1000;

}