Subversion Repositories WebE

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
33 PointedEar 1
/* $Id: PostLoad.java 11282 2007-03-14 22:05:59Z epbernard $
2
 * JBoss Inc
3
 *
4
 * Distributable under LGPL license.
5
 * See terms of license at gnu.org.
6
 */
7
package javax.persistence;
8
 
9
import java.lang.annotation.ElementType;
10
import java.lang.annotation.Retention;
11
import java.lang.annotation.RetentionPolicy;
12
import java.lang.annotation.Target;
13
 
14
 
15
/**
16
 * Is used to specify callback methods for the corresponding lifecycle event. This annotation may be applied to
17
 * methods of an entity class, a mapped superclass, or a callback listener class.
18
 *
19
 * @author <a href="mailto:bill@jboss.org">Bill Burke</a>
20
 */
21
@Target({ElementType.METHOD})
22
@Retention(RetentionPolicy.RUNTIME)
23
public @interface PostLoad {
24
}