package com.yoursway.utils.annotations; import static java.lang.annotation.ElementType.FIELD; import static java.lang.annotation.RetentionPolicy.SOURCE; import java.lang.annotation.Retention; import java.lang.annotation.Target; @Retention(SOURCE) @Target({FIELD}) public @interface WhenNotMeaningfulMustHaveValue { String value(); String reason(); }