org.flowable.validation.validator.ValidatorImpl Maven / Gradle / Ivy
/* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.flowable.validation.validator;
import java.util.List;
import org.flowable.bpmn.model.BaseElement;
import org.flowable.bpmn.model.FlowElement;
import org.flowable.bpmn.model.Process;
import org.flowable.validation.ValidationError;
/**
* @author Joram Barrez
*/
public abstract class ValidatorImpl implements Validator {
public void addError(List validationErrors, ValidationError error) {
validationErrors.add(error);
}
protected void addError(List validationErrors, String problem, String description) {
addError(validationErrors, problem, null, null, description, false);
}
protected void addError(List validationErrors, String problem, BaseElement baseElement, String description) {
addError(validationErrors, problem, null, baseElement, description);
}
protected void addError(List validationErrors, String problem, Process process, BaseElement baseElement, String description) {
addError(validationErrors, problem, process, baseElement, description, false);
}
protected void addWarning(List validationErrors, String problem, Process process, BaseElement baseElement, String description) {
addError(validationErrors, problem, process, baseElement, description, true);
}
protected void addError(List validationErrors, String problem, Process process, BaseElement baseElement, String description, boolean isWarning) {
ValidationError error = new ValidationError();
error.setWarning(isWarning);
if (process != null) {
error.setProcessDefinitionId(process.getId());
error.setProcessDefinitionName(process.getName());
}
if (baseElement != null) {
error.setXmlLineNumber(baseElement.getXmlRowNumber());
error.setXmlColumnNumber(baseElement.getXmlColumnNumber());
}
error.setProblem(problem);
error.setDefaultDescription(description);
if (baseElement instanceof FlowElement) {
FlowElement flowElement = (FlowElement) baseElement;
error.setActivityId(flowElement.getId());
error.setActivityName(flowElement.getName());
}
addError(validationErrors, error);
}
protected void addError(List validationErrors, String problem, Process process, String id, String description) {
ValidationError error = new ValidationError();
if (process != null) {
error.setProcessDefinitionId(process.getId());
error.setProcessDefinitionName(process.getName());
}
error.setProblem(problem);
error.setDefaultDescription(description);
error.setActivityId(id);
addError(validationErrors, error);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy