This commit is contained in:
@@ -3,10 +3,83 @@
|
|||||||
*/
|
*/
|
||||||
package org.yacos.core.conferences;
|
package org.yacos.core.conferences;
|
||||||
|
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author christiancorsano
|
* @author wang
|
||||||
* TODO
|
* TODO
|
||||||
*/
|
*/
|
||||||
public class Conference {
|
public class Conference {
|
||||||
|
|
||||||
|
private String titre;
|
||||||
|
|
||||||
|
private String description;
|
||||||
|
|
||||||
|
private String infoComplementary;
|
||||||
|
|
||||||
|
private Date dateAbstract;
|
||||||
|
|
||||||
|
private Date dateEvaluation;
|
||||||
|
|
||||||
|
private Date dateStart;
|
||||||
|
|
||||||
|
private Date dateEnd;
|
||||||
|
|
||||||
|
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 getInfoComplementary() {
|
||||||
|
return infoComplementary;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setInfoComplementary(String infoComplementary) {
|
||||||
|
this.infoComplementary = infoComplementary;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Date getDateAbstract() {
|
||||||
|
return dateAbstract;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDateAbstract(Date dateAbstract) {
|
||||||
|
this.dateAbstract = dateAbstract;
|
||||||
|
}
|
||||||
|
|
||||||
|
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;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user