Changement du titre en title
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
package org.yacos.core.conferences;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Collection;
|
||||
import java.util.Date;
|
||||
|
||||
@@ -24,7 +25,7 @@ public class Conference implements Serializable{
|
||||
@Id
|
||||
@GeneratedValue(strategy=GenerationType.AUTO)
|
||||
private Integer id;
|
||||
private String titre;
|
||||
private String title;
|
||||
private String description;
|
||||
private String otherInformations;
|
||||
@Temporal(TemporalType.DATE)
|
||||
@@ -123,11 +124,11 @@ public class Conference implements Serializable{
|
||||
public void setOtherInformations(String otherInformations) {
|
||||
this.otherInformations = otherInformations;
|
||||
}
|
||||
public String getTitre() {
|
||||
return titre;
|
||||
public String getTitle() {
|
||||
return title;
|
||||
}
|
||||
public void setTitre(String titre) {
|
||||
this.titre = titre;
|
||||
public void setTitle(String title) {
|
||||
this.title = title;
|
||||
}
|
||||
public Integer getId() {
|
||||
return id;
|
||||
@@ -142,7 +143,7 @@ public class Conference implements Serializable{
|
||||
|
||||
public Conference(String titre, String descirption, String infoComplementray, Date dataAbstract, Date dateArticle, Date dateEvaluation, Date dateStart, Date dateEnd) {
|
||||
this();
|
||||
this.titre = titre;
|
||||
this.title = titre;
|
||||
this.description = descirption;
|
||||
this.otherInformations = infoComplementray;
|
||||
this.dateAbstract = dataAbstract;
|
||||
|
||||
Reference in New Issue
Block a user