All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ninja.validation.ValidationImpl Maven / Gradle / Ivy

/**
 * Copyright (C) 2012-2016 the original author or authors.
 *
 * 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 ninja.validation;

import java.util.ArrayList;
import java.util.List;

/**
 * Validation object
 *
 * @author James Roper
 * @author Philip Sommer
 */
public class ValidationImpl implements Validation {

    private final List fieldViolations = new ArrayList();
    private final List generalViolations = new ArrayList();
    private final List beanViolations = new ArrayList();

    @Override
    public boolean hasViolations() {
        return !this.fieldViolations.isEmpty() || !this.generalViolations.isEmpty()
                || !this.beanViolations.isEmpty();
    }

    @Override
    public void addFieldViolation(FieldViolation fieldViolation) {
        if (fieldViolation.field == null) {
            this.generalViolations.add(fieldViolation.constraintViolation);
        } else {
            this.fieldViolations.add(fieldViolation);
        }
    }

    @Override
    public void addFieldViolation(String field, ConstraintViolation constraintViolation) {
        addFieldViolation(new FieldViolation(field, constraintViolation));
    }

    @Override
    public boolean hasFieldViolation(String field) {
        for (FieldViolation fieldViolation : this.fieldViolations) {
            if (fieldViolation.field.contentEquals(field)) {
                return true;
            }
        }
        return false;
    }

    @Override
    public List getFieldViolations() {
        return this.fieldViolations;
    }

    @Override
    public List getFieldViolations(String field) {
        List violationsForThisField = new ArrayList();
        for (FieldViolation fieldViolation : this.fieldViolations) {
            if (fieldViolation.field.contentEquals(field)) {
                violationsForThisField.add(fieldViolation);
            }
        }
        return violationsForThisField;
    }

    @Override
    public void addBeanViolation(FieldViolation fieldViolation) {
        this.beanViolations.add(fieldViolation);
    }

    @Override
    public boolean hasBeanViolation(String field) {
        for (FieldViolation beanViolation : this.beanViolations) {
            if (beanViolation.field.contentEquals(field)) {
                return true;
            }
        }
        return false;
    }

    @Override
    public boolean hasBeanViolations() {
        return !this.beanViolations.isEmpty();
    }

    @Override
    public List getBeanViolations() {
        return this.beanViolations;
    }

    @Override
    public void addViolation(ConstraintViolation constraintViolation) {
        this.generalViolations.add(constraintViolation);
    }

    @Override
    public List getGeneralViolations() {
        return this.generalViolations;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy