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

org.jboss.modules.management.DependencyInfo Maven / Gradle / Ivy

There is a newer version: 2.1.5.Final
Show newest version
/*
 * JBoss, Home of Professional Open Source.
 * Copyright 2010, Red Hat, Inc., and individual contributors
 * as indicated by the @author tags. See the copyright.txt file in the
 * distribution for a full listing of individual contributors.
 *
 * This is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation; either version 2.1 of
 * the License, or (at your option) any later version.
 *
 * This software 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this software; if not, write to the Free
 * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
 */

package org.jboss.modules.management;

import java.beans.ConstructorProperties;
import java.util.List;

/**
 * Information describing a dependency.
 *
 * @author David M. Lloyd
 */
public final class DependencyInfo {
    private final String dependencyType;
    private final String exportFilter;
    private final String importFilter;
    private final ModuleLoaderMXBean moduleLoader;
    private final String moduleName;
    private final boolean optional;
    private final String localLoader;
    private final List localLoaderPaths;

    /**
     * Construct a new instance.
     *
     * @param dependencyType the dependency type class name
     * @param exportFilter the export filter, as a string
     * @param importFilter the import filter, as a string
     * @param moduleLoader the module loader MXBean of this dependency
     * @param moduleName the module name, as a string
     * @param optional {@code true} if this is an optional dependency
     * @param localLoader the local loader type class name
     * @param localLoaderPaths the list of paths made available by the local loader
     */
    @ConstructorProperties({"dependencyType", "exportFilter", "importFilter", "moduleLoader", "moduleName", "optional", "localLoader", "localLoaderPaths"})
    public DependencyInfo(final String dependencyType, final String exportFilter, final String importFilter, final ModuleLoaderMXBean moduleLoader, final String moduleName, final boolean optional, final String localLoader, final List localLoaderPaths) {
        this.dependencyType = dependencyType;
        this.exportFilter = exportFilter;
        this.importFilter = importFilter;
        this.moduleLoader = moduleLoader;
        this.moduleName = moduleName;
        this.optional = optional;
        this.localLoader = localLoader;
        this.localLoaderPaths = localLoaderPaths;
    }

    /**
     * Get the dependency type class name.
     *
     * @return the dependency type class name
     */
    public String getDependencyType() {
        return dependencyType;
    }

    /**
     * Get the export filter, as a string.
     *
     * @return the export filter, as a string
     */
    public String getExportFilter() {
        return exportFilter;
    }

    /**
     * Get the import filter, as a string.
     *
     * @return the import filter, as a string
     */
    public String getImportFilter() {
        return importFilter;
    }

    /**
     * Get the module loader MXBean of this dependency.
     *
     * @return the module loader MXBean of this dependency
     */
    public ModuleLoaderMXBean getModuleLoader() {
        return moduleLoader;
    }

    /**
     * Get the module name, as a string.
     *
     * @return the module name, as a string
     */
    public String getModuleName() {
        return moduleName;
    }

    /**
     * Determine whether this is an optional dependency.
     *
     * @return {@code true} if this is an optional dependency
     */
    public boolean isOptional() {
        return optional;
    }

    /**
     * Get the local loader type class name.
     *
     * @return the local loader type class name
     */
    public String getLocalLoader() {
        return localLoader;
    }

    /**
     * Get the list of paths made available by the local loader.
     *
     * @return the list of paths made available by the local loader
     */
    public List getLocalLoaderPaths() {
        return localLoaderPaths;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy