001package io.ebean.typequery; 002 003import java.lang.annotation.ElementType; 004import java.lang.annotation.Retention; 005import java.lang.annotation.RetentionPolicy; 006import java.lang.annotation.Target; 007 008/** 009 * Marks generated query bean source code. 010 * <p> 011 * This is code generated by the query bean generator (annotation processor). 012 */ 013@Target({ ElementType.TYPE }) 014@Retention(RetentionPolicy.RUNTIME) 015public @interface Generated { 016 017 /** 018 * The name of the generator used to generate this source. 019 */ 020 String value(); 021 022}