Project

General

Profile

1
package eu.dnetlib.rmi.data;
2

    
3
import javax.xml.bind.annotation.XmlRootElement;
4

    
5
@XmlRootElement
6
public class ProtocolParameterValue {
7

    
8
	private String id;
9
	private String name;
10

    
11
	public ProtocolParameterValue() {
12
	}
13

    
14
	public ProtocolParameterValue(final String id, final String name) {
15
		this.id = id;
16
		this.name = name;
17
	}
18

    
19
	public String getId() {
20
		return id;
21
	}
22

    
23
	public void setId(final String id) {
24
		this.id = id;
25
	}
26

    
27
	public String getName() {
28
		return name;
29
	}
30

    
31
	public void setName(final String name) {
32
		this.name = name;
33
	}
34

    
35
}
(38-38/42)