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

com.github.javaclub.cdl.client.config.DbGroupCfg Maven / Gradle / Ivy

There is a newer version: 2.3.9
Show newest version
package com.github.javaclub.cdl.client.config;

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

public class DbGroupCfg {
	
	private String groupName;
	private int groupIndex;
	private Map atomCfgMap = new HashMap();

	public String getGroupName() {
		return groupName;
	}

	public void setGroupName(String groupName) {
		this.groupName = groupName;
	}

	public Map getAtomCfgMap() {
		return atomCfgMap;
	}

	public void setAtomCfgMap(Map atomCfgMap) {
		this.atomCfgMap = atomCfgMap;
	}

	public int getGroupIndex() {
		return groupIndex;
	}

	public void setGroupIndex(int groupIndex) {
		this.groupIndex = groupIndex;
	}

	@Override
	public String toString() {
		return "DbGroupCfg [groupName=" + groupName + ", groupIndex=" + groupIndex + ", atomCfgMap=" + atomCfgMap + "]";
	}

	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy