001package org.kuali.common.util.env.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@Target({ ElementType.FIELD })
010@Retention(RetentionPolicy.RUNTIME)
011@Documented
012public @interface EnvIgnore {
013}