Subversion Repositories eFlore/Applications.del

Rev

Rev 14 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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