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

org.duracloud.appconfig.support.ApplicationWithConfig Maven / Gradle / Ivy

There is a newer version: 3.7.4
Show newest version
/*
 * The contents of this file are subject to the license and copyright
 * detailed in the LICENSE and NOTICE files at the root of the source
 * tree and available online at
 *
 *     http://duracloud.org/license/
 */
package org.duracloud.appconfig.support;

import org.duracloud.appconfig.domain.AppConfig;
import org.duracloud.appconfig.domain.Application;

/**
 * @author: Andrew Woods
 * Date: Jun 25, 2010
 */
public class ApplicationWithConfig {

    private String name;
    private Application application;
    private AppConfig config;

    public ApplicationWithConfig(String name) {
        this.name = name;
    }

    public String getName() {
        return name;
    }

    public Application getApplication() {
        return application;
    }

    public void setApplication(Application application) {
        this.application = application;
    }

    public AppConfig getConfig() {
        return config;
    }

    public void setConfig(AppConfig config) {
        this.config = config;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy