Skip to content
Snippets Groups Projects
Commit 4b0c026a authored by Andreas Gärtner's avatar Andreas Gärtner
Browse files

Task #17373: Add "Twitter Wall" use case to SessionFeature entity

parent e02691d1
No related merge requests found
......@@ -31,6 +31,7 @@ public class SessionFeature implements Serializable {
private boolean custom = true;
private boolean clicker = false;
private boolean peerGrading = false;
private boolean twitterWall = false;
private boolean liveFeedback = false;
private boolean interposedFeedback = false;
private boolean liveClicker = false;
......@@ -50,6 +51,7 @@ public class SessionFeature implements Serializable {
this.custom = features.custom;
this.clicker = features.clicker;
this.peerGrading = features.peerGrading;
this.twitterWall = features.twitterWall;
this.liveFeedback = features.liveFeedback;
this.interposedFeedback = features.interposedFeedback;
this.liveClicker = features.liveClicker;
......@@ -183,4 +185,12 @@ public class SessionFeature implements Serializable {
this.liveClicker = liveClicker;
}
public boolean isTwitterWall() {
return twitterWall;
}
public void setTwitterWall(boolean twitterWall) {
this.twitterWall = twitterWall;
}
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment