This commit is contained in:
Frederic Debuire
2008-01-10 09:55:45 +00:00
parent afd9a5b4bb
commit 55f0f79ab4

View File

@@ -0,0 +1,93 @@
package org.yacos.web.chairman.form;
import java.util.Date;
public class FormConference {
private Integer id;
private String titre;
private String description;
private String otherInformations;
private Date dateAbstract;
private Date dateArticle;
private Date dateEvaluation;
private Date dateStart;
private Date dateEnd;
public FormConference () {}
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getTitre() {
return titre;
}
public void setTitre(String titre) {
this.titre = titre;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public String getOtherInformations() {
return otherInformations;
}
public void setOtherInformations(String otherInformations) {
this.otherInformations = otherInformations;
}
public Date getDateAbstract() {
return dateAbstract;
}
public void setDateAbstract(Date dateAbstract) {
this.dateAbstract = dateAbstract;
}
public Date getDateArticle() {
return dateArticle;
}
public void setDateArticle(Date dateArticle) {
this.dateArticle = dateArticle;
}
public Date getDateEvaluation() {
return dateEvaluation;
}
public void setDateEvaluation(Date dateEvaluation) {
this.dateEvaluation = dateEvaluation;
}
public Date getDateStart() {
return dateStart;
}
public void setDateStart(Date dateStart) {
this.dateStart = dateStart;
}
public Date getDateEnd() {
return dateEnd;
}
public void setDateEnd(Date dateEnd) {
this.dateEnd = dateEnd;
}
}