diff --git a/YACOSWeb/src/org/yacos/web/chairman/form/FormConference.java b/YACOSWeb/src/org/yacos/web/chairman/form/FormConference.java new file mode 100644 index 0000000..55db88d --- /dev/null +++ b/YACOSWeb/src/org/yacos/web/chairman/form/FormConference.java @@ -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; + } + + + +}