cn.ipokerface.common.validation.validator.NotNullConstraintValidator 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.NotNull;
/**
* Created by PokerFace
* Create Date 2019-11-25.
* Email: [email protected]
* Version 1.0.0
*
* Description: Validate {@link NotNull} annotation on object value
*
*/
public class NotNullConstraintValidator implements ConstraintValidator {
public boolean validate(Object value, NotNull constraintAnnotation) {
if (value == null) return false;
return true;
}
}