001package com.avaje.ebean.annotation; 002 003import java.lang.annotation.ElementType; 004import java.lang.annotation.Retention; 005import java.lang.annotation.RetentionPolicy; 006import java.lang.annotation.Target; 007 008/** 009 * Mark and entity bean that is used solely via RawSql. 010 * <p> 011 * This means the entity bean has no base table specified (via @Table). 012 * </p> 013 */ 014@Target({ ElementType.TYPE }) 015@Retention(RetentionPolicy.RUNTIME) 016public @interface Sql { 017 018}