All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.vonce.validator.annotation.VBean Maven / Gradle / Ivy

There is a newer version: 0.9.6
Show newest version
package cn.vonce.validator.annotation;

import java.lang.annotation.*;

/**
 * 校验bean里配置的字段
 *
 * @author Jovi
 * @version 1.0
 * @email [email protected]
 * @date 2017年4月20日下午23:45:17
 */
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.PARAMETER)
@Documented
public @interface VBean {

    /**
     * 需要校验的分组
     *
     * @return
     * @author Jovi
     * @date 2017年6月21日下午12:07:25
     */
    String group() default "";

    /**
     * 校验字段遇到错误是否中断不再继续校验
     *
     * @return
     * @author Jovi
     * @date 2018年1月17日下午4:33:57
     */
    boolean interrupt() default true;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy