update DAO with theme
This commit is contained in:
@@ -10,6 +10,7 @@ public class Session implements Serializable {
|
||||
private int codePIN;
|
||||
private ArrayList<Quizz> quizzs;
|
||||
private ArrayList<Utilisateur> utilisateurs;
|
||||
private String theme;
|
||||
|
||||
public Session(){
|
||||
}
|
||||
@@ -41,4 +42,12 @@ public class Session implements Serializable {
|
||||
public ArrayList<Utilisateur> getUtilisateurs() {
|
||||
return this.utilisateurs;
|
||||
}
|
||||
|
||||
private String getTheme(){
|
||||
return this.theme;
|
||||
}
|
||||
|
||||
private void setTheme(String theme){
|
||||
this.theme = theme;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user