com.galenframework.validation.ValidationError.java Source code

Java tutorial

Introduction

Here is the source code for com.galenframework.validation.ValidationError.java

Source

/*******************************************************************************
* Copyright 2015 Ivan Shubin http://galenframework.com
* 
* 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 com.galenframework.validation;

import static java.lang.String.format;

import java.util.LinkedList;
import java.util.List;

import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;

public class ValidationError {

    private List<String> messages;

    private ImageComparison imageComparison;
    private boolean onlyWarn;

    public ValidationError(List<String> messages) {
        this.messages = messages;
    }

    public ValidationError(List<String> messages, ImageComparison imageComparison) {
        this.messages = messages;
        this.imageComparison = imageComparison;
    }

    public ValidationError() {
    }

    @Override
    public int hashCode() {
        return new HashCodeBuilder(17, 31) //@formatter:off
                .append(messages).append(onlyWarn).toHashCode(); //@formatter:on
    }

    @Override
    public boolean equals(Object obj) {
        if (obj == null)
            return false;
        if (obj == this)
            return true;
        if (!(obj instanceof ValidationError))
            return false;

        ValidationError rhs = (ValidationError) obj;
        return new EqualsBuilder() //@formatter:off
                .append(messages, rhs.messages).append(onlyWarn, rhs.onlyWarn).isEquals(); //@formatter:on
    }

    @Override
    public String toString() {
        return format("Error{%s, onlyWarn=%s}", messages, onlyWarn);
    }

    public List<String> getMessages() {
        return messages;
    }

    public void setMessages(List<String> messages) {
        this.messages = messages;
    }

    public ValidationError withMessage(String message) {
        if (messages == null) {
            messages = new LinkedList<String>();
        }
        messages.add(message);
        return this;
    }

    public void setOnlyWarn(boolean onlyWarn) {
        this.onlyWarn = onlyWarn;
    }

    public boolean isOnlyWarn() {
        return onlyWarn;
    }

    public ValidationError withOnlyWarn(boolean onlyWarn) {
        setOnlyWarn(onlyWarn);
        return this;
    }

    public ImageComparison getImageComparison() {
        return imageComparison;
    }

    public ValidationError withImageComparison(ImageComparison imageComparison) {
        this.imageComparison = imageComparison;
        return this;
    }

}