top.wboost.common.annotation.parameter.NotNull Maven / Gradle / Ivy
package top.wboost.common.annotation.parameter;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* 参数值不能为空
* @className NotNull
* @author jwSun
* @date 2017年9月14日 上午10:32:01
* @version 1.0.0
*/
@Target({ ElementType.METHOD, ElementType.PARAMETER })
@Retention(RetentionPolicy.RUNTIME)
@Documented
@ParameterConfig
public @interface NotNull {
String value() default "";
}