diff --git a/src/main/java/de/thm/arsnova/entities/SessionFeature.java b/src/main/java/de/thm/arsnova/entities/SessionFeature.java index caa8731505a51fcc135b4a576c679bb306e4c71c..c7e0f8f0fc9ad8d1c77c3742f8f7447dfa5993d6 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; + } + }