Subversion Repositories eFlore/Applications.del

Rev

Rev 98 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 98 Rev 100
1
package org.tela_botanica.del.client.modeles;
1
package org.tela_botanica.del.client.modeles;
2
 
2
 
3
public class Protocol {
3
public class Protocol {
4
	
4
	
5
	private int id;
5
	private int id;
6
	
6
	
7
	private String name;
7
	private String name;
-
 
8
 
-
 
9
	public int getId() {
-
 
10
		return id;
-
 
11
	}
-
 
12
 
-
 
13
	public void setId(int id) {
-
 
14
		this.id = id;
-
 
15
	}
-
 
16
 
-
 
17
	public String getName() {
-
 
18
		return name;
-
 
19
	}
-
 
20
 
-
 
21
	public void setName(String name) {
-
 
22
		this.name = name;
-
 
23
	}
8
 
24
 
9
}
25
}