From 4b0c026a8e5e9b00ec89d66be5b33ea50e3af96c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20G=C3=A4rtner?= <andreas.gaertner@hotmail.com> Date: Sun, 6 Mar 2016 23:39:43 +0100 Subject: [PATCH] Task #17373: Add "Twitter Wall" use case to SessionFeature entity --- .../java/de/thm/arsnova/entities/SessionFeature.java | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/main/java/de/thm/arsnova/entities/SessionFeature.java b/src/main/java/de/thm/arsnova/entities/SessionFeature.java index caa873150..c7e0f8f0f 100644 --- a/src/main/java/de/thm/arsnova/entities/SessionFeature.java +++ b/src/main/java/de/thm/arsnova/entities/SessionFeature.java @@ -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; + } + } -- GitLab