Subversion Repositories eFlore/Applications.del

Rev

Rev 2080 | Details | Compare with Previous | Last modification | View Log | RSS feed

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