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

spring.turbo.bean.jsr380.FieldsValueNotMatch Maven / Gradle / Ivy

package spring.turbo.bean.jsr380;

import jakarta.validation.Constraint;
import jakarta.validation.Payload;

import java.lang.annotation.*;

import static java.lang.annotation.ElementType.*;

/**
 * @author 应卓
 * @since 1.0.0
 */
@Repeatable(FieldsValueNotMatch.List.class)
@Inherited
@Documented
@Target({METHOD, FIELD, ANNOTATION_TYPE, CONSTRUCTOR, PARAMETER, TYPE_USE})
@Retention(RetentionPolicy.RUNTIME)
@Constraint(validatedBy = FieldsValueNotMatchValidator.class)
public @interface FieldsValueNotMatch {

    public String message() default "";

    public String field();

    public String fieldMatch();

    public Class[] groups() default {};

    public Class[] payload() default {};

    @Inherited
    @Documented
    @Target({METHOD, FIELD, ANNOTATION_TYPE, CONSTRUCTOR, PARAMETER, TYPE_USE})
    @Retention(RetentionPolicy.RUNTIME)
    public @interface List {
        public FieldsValueNotMatch[] value();
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy