lodsve.validate.core.AbstractValidateHandler Maven / Gradle / Ivy
/*
* Copyright (C) 2018 Sun.Hao
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
package lodsve.validate.core;
import lodsve.validate.constants.ValidateConstants;
import lodsve.validate.exception.ErrorMessage;
import lodsve.validate.handler.DoubleHandler;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.lang.annotation.Annotation;
/**
* 所有验证条件的处理类必须继承这个抽象类,以实现各自的验证方法.
*
* @author sunhao([email protected])
* @date 12-11-26 下午7:46
*/
public abstract class AbstractValidateHandler {
private static final Logger logger = LoggerFactory.getLogger(DoubleHandler.class);
/**
* 所有继承这个类的类才会是对应注解验证类型的验证类,验证的时候都调用这个方法
*
* @param annotation 待验证字段的注解
* @param value 待验证字段的值
* @return
*/
protected abstract ErrorMessage handle(Annotation annotation, Object value);
/**
* 在抽象类中进行每个验证组件都会执行的操作(判空)
*
* @param annotation 待验证字段的注解
* @param value 待验证字段的值
* @return
*/
public ErrorMessage validate(Annotation annotation, Object value) {
if (annotation == null) {
logger.error("given null annotation!");
return null;
}
return this.handle(annotation, value);
}
protected ErrorMessage getMessage(Class extends Annotation> annotation, Class extends AbstractValidateHandler> handler, String key, boolean result, Object... args) {
if (result) {
return null;
}
return new ErrorMessage(annotation, handler, ValidateConstants.getMessage(key, args));
}
}