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

io.afu.validator.Annimation.ChineseMobile Maven / Gradle / Ivy

There is a newer version: 2.4-RELEASE
Show newest version
package io.afu.validator.Annimation;

import io.afu.validator.Constant.MsgConstant;
import io.afu.validator.Implement.ChineseIdCardValidatorImpl;
import io.afu.validator.Implement.ChineseMobileValidatorImpl;

import javax.validation.Constraint;
import javax.validation.Payload;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

@Target({ElementType.ANNOTATION_TYPE,ElementType.FIELD,ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@Constraint(validatedBy = {ChineseMobileValidatorImpl.class})
public @interface ChineseMobile {
    // 中国手机号码的验证

    String message() default MsgConstant.ILLEGAL_MOBILE;

    Class[] groups() default {};

    Class[] payload() default{};

    boolean allowEmpty() default false;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy