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

cn.yangjunda.util.Configuration Maven / Gradle / Ivy

package cn.yangjunda.util;

import java.util.HashMap;
import java.util.Map;

/**
 * Created by juanda on 12/9/17.
 */
public class Configuration {

    private String packagePath;

    private Boolean autowire = true;

    private Map beans = new HashMap<>();

    public String getPackagePath() {
        return packagePath;
    }

    public void setPackagePath(String packagePath) {
        this.packagePath = packagePath;
    }

    public Boolean getAutowire() {
        return autowire;
    }

    public void setAutowire(Boolean autowire) {
        this.autowire = autowire;
    }

    public Map getBeans() {
        return beans;
    }

    public void setBeans(Map beans) {
        this.beans = beans;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy