Subversion Repositories eFlore/Applications.del

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2212 arthur 1
package org.tela_botanica.del.client.modeles;
2
 
3
public class Protocole {
4
 
5
	private int id;
6
	private String nom;
7
	private String description;
8
	private String tag;
9
	private String motsClesProtocoles;
10
	private boolean doitEtreIdentifiePourVoter = false;
11
 
12
	public int getId() {
13
		return id;
14
	}
15
 
16
	public void setId(int id) {
17
		this.id = id;
18
	}
19
 
20
	public String getNom() {
21
		return nom;
22
	}
23
 
24
	public void setNom(String nom) {
25
		this.nom = nom;
26
	}
27
 
28
	public String getDescription() {
29
		return description;
30
	}
31
 
32
	public void setDescription(String description) {
33
		this.description = description;
34
	}
35
 
36
	public String getTag() {
37
		return tag;
38
	}
39
 
40
	public void setTag(String tag) {
41
		this.tag = tag;
42
	}
43
 
44
	public void setMotsClesProtocole(String motsClesProtocole) {
45
		this.motsClesProtocoles = motsClesProtocole;
46
	}
47
 
48
	public String getMotsClesProtocole() {
49
		return motsClesProtocoles;
50
	}
51
 
52
	public boolean doitEtreIdentifiePourVoter() {
53
		return doitEtreIdentifiePourVoter;
54
	}
55
 
56
	public void setDoitEtreIdentifiePourVoter(boolean doitEtreIdentifiePourVoter) {
57
		this.doitEtreIdentifiePourVoter = doitEtreIdentifiePourVoter;
58
	}
59
 
60
}