001    package net.sf.persism.annotations;
002    
003    /*
004     * $RCSfile: $
005     * $Revision: $
006     * $Date: $
007     * Created by IntelliJ IDEA.
008     * User: DHoward
009     * Date: 9/14/11
010     * Time: 7:38 AM
011     */
012    
013    import java.lang.annotation.ElementType;
014    import java.lang.annotation.Retention;
015    import java.lang.annotation.RetentionPolicy;
016    import java.lang.annotation.Target;
017    
018    /**
019     * Indicates that the class represents the result of query instead of a table.
020     */
021    @Retention(value = RetentionPolicy.RUNTIME)
022    @Target(ElementType.TYPE)
023    public @interface QueryResult {
024    
025    }