001package javax.annotation;
002
003import java.lang.annotation.Documented;
004import java.lang.annotation.ElementType;
005import java.lang.annotation.Retention;
006import java.lang.annotation.RetentionPolicy;
007import java.lang.annotation.Target;
008
009@Documented
010@Retention(RetentionPolicy.RUNTIME)
011@Target({ElementType.METHOD})
012public @interface PostConstruct {
013}