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

io.bigdime.core.config.SourceConfig Maven / Gradle / Ivy

There is a newer version: 0.9.3
Show newest version
/**
 * Copyright (C) 2015 Stubhub.
 */
package io.bigdime.core.config;

import java.util.LinkedHashSet;
import java.util.Map;
import java.util.Set;

public class SourceConfig {
	private String name;
	private String description;
	private LinkedHashSet handlerConfigs;
	private Map srcDesc;
	private String sourceType;

	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}

	public String getDescription() {
		return description;
	}

	public void setDescription(String description) {
		this.description = description;
	}

	public Set getHandlerConfigs() {
		return handlerConfigs;
	}

	public void setHandlerConfigs(LinkedHashSet handlers) {
		this.handlerConfigs = handlers;
	}

	public Map getSrcDesc() {
		return srcDesc;
	}

	public void setSrcDesc(Map srcDesc) {
		this.srcDesc = srcDesc;
	}

	public String getSourceType() {
		return sourceType;
	}

	public void setSourceType(String sourceType) {
		this.sourceType = sourceType;
	}

	@Override
	public String toString() {
		return "SourceConfig [name=" + name + ", description=" + description + ", handlerConfigs=" + handlerConfigs
				+ ", srcDesc=" + srcDesc + ", sourceType=" + sourceType + "]";
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy