Skip to content

Package: PreUpdate

PreUpdate

Coverage

1: package cz.cvut.kbss.jopa.model.annotations;
2:
3: import java.lang.annotation.ElementType;
4: import java.lang.annotation.Retention;
5: import java.lang.annotation.RetentionPolicy;
6: import java.lang.annotation.Target;
7:
8: /**
9: * Specifies a callback method for the corresponding lifecycle event. This annotation may be applied to methods of an
10: * entity class, a mapped superclass, or a callback listener class.
11: */
12: @Target(ElementType.METHOD)
13: @Retention(RetentionPolicy.RUNTIME)
14: public @interface PreUpdate {
15: }