Subversion Repositories eFlore/Applications.del

Rev

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

Rev Author Line No. Line
165 aurelien 1
package org.tela_botanica.del.client.modeles;
2
 
3
import java.util.Date;
4
 
5
public class Vote {
232 gduche 6
 
165 aurelien 7
	private String id;
8
	private int vote;
9
	private String contributeur;
10
	private Date date;
11
 
12
	public Vote() {
13
	}
14
 
15
	public String getId() {
16
		return id;
17
	}
18
 
19
	public void setId(String id) {
20
		this.id = id;
21
	}
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 Date getDate() {
40
		return date;
41
	}
42
 
43
	public void setDate(Date date) {
44
		this.date = date;
45
	}
46
}