cn.ipokerface.common.validation.validator.NullConstraintValidator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common-beans Show documentation
Show all versions of common-beans Show documentation
Common Library of ipokerface
package cn.ipokerface.common.validation.validator;
import cn.ipokerface.common.validation.constraint.Null;
/**
* Created by PokerFace
* Create Date 2019-11-25.
* Email: [email protected]
* Version 1.0.0
*
* Description:
*/
public class NullConstraintValidator implements ConstraintValidator {
public boolean validate(Object value, Null constraintAnnotation) {
if (value != null) return false;
return true;
}
}