blob: f96e5f2ed75e17e0c576066538fb0b91384d4bfb [file] [log] [blame]
package profiledb.model;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface Type {
String value();
}