| package grails.persistence; | |
| import java.lang.annotation.ElementType; | |
| import java.lang.annotation.Retention; | |
| import java.lang.annotation.RetentionPolicy; | |
| import java.lang.annotation.Target; | |
| /** | |
| * @author Graeme Rocher | |
| * @since 1.1 | |
| */ | |
| @Retention(RetentionPolicy.RUNTIME) | |
| @Target({ElementType.TYPE}) | |
| public @interface Entity { | |
| } |