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

com.github.fashionbrot.validated.test.CustomConstraintValidator Maven / Gradle / Ivy

There is a newer version: 2.0.9
Show newest version
package com.github.fashionbrot.validated.test;


import com.github.fashionbrot.validated.constraint.ConstraintValidator;

public class CustomConstraintValidator implements ConstraintValidator {

    @Override
    public boolean isValid(Custom custom, Object var1) {
        /**
         * 自定义方法
         */
        int min=custom.min();
        /**
         * valud
         */
        System.out.println(var1);
        /**
         * return true 则验证成功 false 验证失败
          */
        return true;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy