package eu.dnetlib.rmi.objects.datasources;

import javax.xml.bind.annotation.XmlRootElement;

@XmlRootElement
public class ProtocolParameterValue {

	private String id;
	private String name;

	public ProtocolParameterValue() {}

	public ProtocolParameterValue(final String id, final String name) {
		this.id = id;
		this.name = name;
	}

	public String getId() {
		return id;
	}

	public void setId(final String id) {
		this.id = id;
	}

	public String getName() {
		return name;
	}

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

}
