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

org.apache.openejb.config.ValidationContext Maven / Gradle / Ivy

There is a newer version: 4.7.5
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You 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.apache.openejb.config;

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

/**
 * @version $Rev: 1209244 $ $Date: 2011-12-01 13:18:31 -0800 (Thu, 01 Dec 2011) $
 */
public class ValidationContext implements ValidationResults {
    private final List failures = new ArrayList();
    private final List warnings = new ArrayList();
    private final List errors = new ArrayList();

    private final String moduleType;
    private final String name;
    private final DeploymentModule module;

    public ValidationContext(Class moduleType, String name) {
        this.moduleType = moduleType.getSimpleName();
        this.name = name;
        this.module = null;
    }

    public ValidationContext(DeploymentModule module) {
        this.moduleType = module.getClass().getSimpleName();
        this.module = module;
        this.name = null;
    }

    public DeploymentModule getModule() {
        return module;
    }

    public void fail(String component, String key, Object... details) {
        ValidationFailure failure = new ValidationFailure(key);
        failure.setDetails(details);
        failure.setComponentName(component);

        addFailure(failure);
    }

    public void warn(String component, String key, Object... details) {
        ValidationWarning warning = new ValidationWarning(key);
        warning.setDetails(details);
        warning.setComponentName(component);

        addWarning(warning);
    }

    public void error(String component, String key, Object... details) {
        ValidationError error = new ValidationError(key);
        error.setDetails(details);
        error.setComponentName(component);

        addError(error);
    }

    public void addWarning(ValidationWarning warning) {
        warnings.add(warning);
    }

    public void addFailure(ValidationFailure failure) {
        failures.add(failure);
    }

    public void addError(ValidationError error) {
        errors.add(error);
    }

    public ValidationFailure[] getFailures() {
        return failures.toArray(new ValidationFailure[failures.size()]);
    }

    public ValidationWarning[] getWarnings() {
        return warnings.toArray(new ValidationWarning[warnings.size()]);
    }

    public ValidationError[] getErrors() {
        return errors.toArray(new ValidationError[errors.size()]);
    }

    public boolean hasWarnings() {
        return warnings.size() > 0;
    }

    public boolean hasFailures() {
        return failures.size() > 0;
    }

    public boolean hasErrors() {
        return errors.size() > 0;
    }

    public String getName() {
        return (module == null) ? name : module.getModuleId();
    }

    public String getModuleType() {
        return moduleType;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy