Project

General

Profile

1
package eu.dnetlib.grid.process.model;
2

    
3
public class GridRel {
4

    
5
	private String type;
6
	private String label;
7
	private String id;
8

    
9
	public String getType() {
10
		return type;
11
	}
12

    
13
	public void setType(final String type) {
14
		this.type = type;
15
	}
16

    
17
	public String getLabel() {
18
		return label;
19
	}
20

    
21
	public void setLabel(final String label) {
22
		this.label = label;
23
	}
24

    
25
	public String getId() {
26
		return id;
27
	}
28

    
29
	public void setId(final String id) {
30
		this.id = id;
31
	}
32

    
33
}
(9-9/10)