Subversion Repositories WebE

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
33 PointedEar 1
//$Id: $
2
package org.hibernate.annotations;
3
 
4
import java.lang.annotation.*;
5
 
6
/**
7
 * Specify a custom persister.
8
 *
9
 * @author Shawn Clowater
10
 */
11
@java.lang.annotation.Target({ElementType.TYPE, ElementType.METHOD, ElementType.FIELD})
12
@Retention( RetentionPolicy.RUNTIME )
13
public @interface Persister {
14
        /** Custom persister */
15
        Class impl();
16
}