summaryrefslogtreecommitdiffstats
path: root/dozentenmodulserver/src/main/java/org/openslx/bwlp/sat/thrift/ServerHandler.java
diff options
context:
space:
mode:
authorJonathan Bauer2016-01-05 14:11:28 +0100
committerJonathan Bauer2016-01-05 14:11:28 +0100
commitaf93df1939c5c319456608bdc04c09c32cbe084a (patch)
tree7e64bacc7f21a86cbfdba46bdd249a3635afe196 /dozentenmodulserver/src/main/java/org/openslx/bwlp/sat/thrift/ServerHandler.java
parent[client] room selection widget [wip] (diff)
downloadtutor-module-af93df1939c5c319456608bdc04c09c32cbe084a.tar.gz
tutor-module-af93df1939c5c319456608bdc04c09c32cbe084a.tar.xz
tutor-module-af93df1939c5c319456608bdc04c09c32cbe084a.zip
[client] checkbox to show the lecture only in the selected rooms
functionality still wip renamed room -> locations
Diffstat (limited to 'dozentenmodulserver/src/main/java/org/openslx/bwlp/sat/thrift/ServerHandler.java')
-rw-r--r--dozentenmodulserver/src/main/java/org/openslx/bwlp/sat/thrift/ServerHandler.java7
1 files changed, 7 insertions, 0 deletions
diff --git a/dozentenmodulserver/src/main/java/org/openslx/bwlp/sat/thrift/ServerHandler.java b/dozentenmodulserver/src/main/java/org/openslx/bwlp/sat/thrift/ServerHandler.java
index ce74680d..a1a9dacf 100644
--- a/dozentenmodulserver/src/main/java/org/openslx/bwlp/sat/thrift/ServerHandler.java
+++ b/dozentenmodulserver/src/main/java/org/openslx/bwlp/sat/thrift/ServerHandler.java
@@ -44,6 +44,7 @@ import org.openslx.bwlp.thrift.iface.LecturePermissions;
import org.openslx.bwlp.thrift.iface.LectureRead;
import org.openslx.bwlp.thrift.iface.LectureSummary;
import org.openslx.bwlp.thrift.iface.LectureWrite;
+import org.openslx.bwlp.thrift.iface.Location;
import org.openslx.bwlp.thrift.iface.OperatingSystem;
import org.openslx.bwlp.thrift.iface.Organization;
import org.openslx.bwlp.thrift.iface.SatelliteConfig;
@@ -632,4 +633,10 @@ public class ServerHandler implements SatelliteServer.Iface {
}
}
+ @Override
+ public List<Location> getLocations() throws TException {
+ // TODO Auto-generated method stub
+ return null;
+ }
+
}