Subversion Repositories eFlore/Applications.del

Rev

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

Rev Author Line No. Line
9 benjamin 1
package org.tela_botanica.del.client.modeles;
2
 
3
import java.io.Serializable;
4
 
14 benjamin 5
public class ObservationValidation implements Serializable {
9 benjamin 6
 
7
	private static final long serialVersionUID = 840032625524143547L;
8
 
9
	private String id;
10
 
11
	private String idImage;
12
 
13
	private int vote;
14
 
15
	private String contributor;
16
 
17
 
18
 
19
	public int getVote() {
20
		return vote;
21
	}
22
 
23
	public void setVote(int vote) {
24
		this.vote = vote;
25
	}
26
 
27
	public String getContributor() {
28
		return contributor;
29
	}
30
 
31
	public void setContributor(String contributor) {
32
		this.contributor = contributor;
33
	}
34
 
35
	public String getId() {
36
		return id;
37
	}
38
 
39
	public void setId(String id) {
40
		this.id = id;
41
	}
42
 
43
	public String getIdImage() {
44
		return idImage;
45
	}
46
 
47
	public void setIdImage(String idImage) {
48
		this.idImage = idImage;
49
	}
50
 
51
}