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

com.ebay.jetstream.configurationmanagement.model.DataFlowsObject Maven / Gradle / Ivy

/*******************************************************************************
 *  Copyright © 2012-2015 eBay Software Foundation
 *  This program is dual licensed under the MIT and Apache 2.0 licenses.
 *  Please see LICENSE for more information.
 *******************************************************************************/
package com.ebay.jetstream.configurationmanagement.model;

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

public class DataFlowsObject {
	private String bean;
	private String description;
	private Map> graph;
	private Set nodes;

	public String getBean() {
		return bean;
	}

	public void setBean(String bean) {
		this.bean = bean;
	}

	public String getDescription() {
		return description;
	}

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

	public Map> getMap() {
		return graph;
	}

	public void setMap(Map> graph) {
		this.graph = graph;
	}
	
	public Set getNodes() {
		return graph.keySet();
	}
	
	public void setNodes(Set nodes) {
		this.nodes = nodes;
	}

}
 




© 2015 - 2024 Weber Informatics LLC | Privacy Policy