Subversion Repositories eFlore/Applications.del

Rev

Rev 1367 | Rev 1928 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1367 Rev 1775
Line 5... Line 5...
5
import java.util.Map;
5
import java.util.Map;
Line 6... Line 6...
6
 
6
 
Line 7... Line 7...
7
public class PropositionDetermination extends InterventionForum implements Serializable {
7
public class PropositionDetermination extends InterventionForum implements Serializable {
8
 
8
 
9
	private static final long serialVersionUID = 840032625524143547L;
9
	private static final long serialVersionUID = 840032625524143547L;
10
	private String id, espece, commentaire, numNomenclatural, referentiel;
10
	private String id, espece, commentaire, numNomenclatural, referentiel, valideePar, dateValidation;
Line 11... Line 11...
11
	private int nbCommentaires = 0;
11
	private int nbCommentaires = 0;
Line 120... Line 120...
120
	}
120
	}
Line 121... Line 121...
121
 
121
 
122
	public void setReferentiel(String referentiel) {
122
	public void setReferentiel(String referentiel) {
123
		this.referentiel = referentiel;
123
		this.referentiel = referentiel;
-
 
124
	}
-
 
125
	
-
 
126
	public String getValideePar() {
-
 
127
		return valideePar;
-
 
128
	}
-
 
129
 
-
 
130
	public void setValideePar(String idUtilisateur) {
-
 
131
		valideePar = idUtilisateur;
-
 
132
	}
-
 
133
	
-
 
134
	public void setDateValidation(String dateValidation) {
-
 
135
		this.dateValidation = dateValidation;
-
 
136
	}
-
 
137
	
-
 
138
	public String getDateValidation() {
-
 
139
		return dateValidation;
124
	}
140
	}