package eu.dnetlib.dlms.rmi;

import javax.xml.bind.annotation.XmlRootElement;

@XmlRootElement()
public class ParameterDescription {
	private String type;
	private String value;

	public ParameterDescription() {
	}
	
	public ParameterDescription(final String type, final String value) {
		super();
		this.type = type;
		this.value = value;
	}

	public String getType() {
		return type;
	}

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

	public String getValue() {
		return value;
	}

	public void setValue(final String value) {
		this.value = value;
	}
}
