package eu.dnetlib.enabling.ui.common.beans;

import com.google.gwt.user.client.rpc.IsSerializable;



public class UnibiServiceInfo implements IsSerializable {
	private String name;
	private String type;
	private String country;
	private String url;
	private String host;

	
	public UnibiServiceInfo() {}
	
	public UnibiServiceInfo(String name, String type, String country, String url, String host) {
		super();
		this.name = name;
		this.type = type;
		this.country = country;
		this.url = url;
		this.host = host;
	}

	public String getName() {
		return name;
	}

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

	public String getCountry() {
		return country;
	}

	public void setCountry(String country) {
		this.country = country;
	}

	public String getUrl() {
		return url;
	}

	public void setUrl(String url) {
		this.url = url;
	}

	public String getHost() {
		return host;
	}

	public void setHost(String host) {
		this.host = host;
	}

	public String getType() {
		return type;
	}

	public void setType(String type) {
		this.type = type;
	}
	
}
