Subversion Repositories eFlore/Applications.del

Rev

Rev 114 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
114 benjamin 1
package org.tela_botanica.del.client.modeles;
2
 
3
import java.io.Serializable;
4
import java.util.Date;
5
 
6
public class VoteProtocole implements Serializable {
7
 
8
	/**
9
	 *
10
	 */
11
	private static final long serialVersionUID = -1017065180398557172L;
12
 
13
	private String id;
14
 
15
	private int vote;
16
 
17
	private String contributeur;
18
 
19
	private Date date;
20
 
21
	private Protocole protocol;
22
 
23
	public int getVote() {
24
		return vote;
25
	}
26
 
27
	public void setVote(int vote) {
28
		this.vote = vote;
29
	}
30
 
31
	public String getContributeur() {
32
		return contributeur;
33
	}
34
 
35
	public void setContributeur(String contributeur) {
36
		this.contributeur = contributeur;
37
	}
38
 
39
	public String getId() {
40
		return id;
41
	}
42
 
43
	public void setId(String id) {
44
		this.id = id;
45
	}
46
 
47
	public Date getDate() {
48
		return date;
49
	}
50
 
51
	public void setDate(Date date) {
52
		this.date = date;
53
	}
54
 
55
	public Protocole getProtocol() {
56
		return protocol;
57
	}
58
 
59
	public void setProtocol(Protocole protocol) {
60
		this.protocol = protocol;
61
	}
62
 
63
}