Subversion Repositories eFlore/Applications.del

Rev

Rev 198 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
147 benjamin 1
package org.tela_botanica.del.client.modeles;
2
 
3
import java.util.ArrayList;
4
import java.util.List;
5
 
6
public class Image {
7
 
8
	private String idImage;
9
 
10
	private Observation observation;
11
 
12
	private String url;
13
 
14
	public String getUrl() {
15
		return url;
16
	}
17
 
18
	public void setUrl(String url) {
19
		this.url = url;
20
	}
21
 
22
	public String getIdImage() {
23
		return idImage;
24
	}
25
 
26
	public void setIdImage(String idImage) {
27
		this.idImage = idImage;
28
	}
29
 
30
	private List<VoteProtocole> voteProtocoles = new ArrayList<VoteProtocole>();
31
 
32
	public List<VoteProtocole> getVoteProtocoles() {
33
		return voteProtocoles;
34
	}
35
 
36
	public void setVoteProtocoles(List<VoteProtocole> voteProtocoles) {
37
		this.voteProtocoles = voteProtocoles;
38
	}
39
 
40
	public Observation getObservation() {
41
		return observation;
42
	}
43
 
44
	public void setObservation(Observation observation) {
45
		this.observation = observation;
46
	}
47
 
48
}