
com.ktanx.common.validation.NotNullValidator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ktanx-common Show documentation
Show all versions of ktanx-common Show documentation
Ktanx is a java development kit.
The newest version!
package com.ktanx.common.validation;
/**
* Created by liyd on 17/1/23.
*/
public class NotNullValidator implements Validator {
public boolean validate(Object obj) {
return obj != null;
}
public String validateCode() {
return "not.null";
}
public String validateMsg(Object value, String validateName) {
return validateName + "不能为空";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy