Subversion Repositories WebE

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
33 PointedEar 1
//$Id: SqlResultSetMapping.java 9044 2006-01-12 20:58:41 -0500 (jeu., 12 janv. 2006) epbernard $
2
//EJB3 Specification Copyright 2004 - 2006 Sun Microsystems, Inc.
3
 
4
package javax.persistence;
5
 
6
import java.lang.annotation.Target;
7
import java.lang.annotation.ElementType;
8
import java.lang.annotation.Retention;
9
import java.lang.annotation.RetentionPolicy;
10
 
11
/**
12
 * This annotation is used to define one or more SqlResultSetMapping
13
 *
14
 * @author Emmanuel Bernard
15
 */
16
@Target({ElementType.TYPE}) @Retention(RetentionPolicy.RUNTIME)
17
public @interface SqlResultSetMappings {
18
        SqlResultSetMapping[] value();
19
}