summaryrefslogtreecommitdiffstats
path: root/Dozentenmodulserver/src/server/ServerHandler.java
diff options
context:
space:
mode:
Diffstat (limited to 'Dozentenmodulserver/src/server/ServerHandler.java')
-rw-r--r--Dozentenmodulserver/src/server/ServerHandler.java17
1 files changed, 11 insertions, 6 deletions
diff --git a/Dozentenmodulserver/src/server/ServerHandler.java b/Dozentenmodulserver/src/server/ServerHandler.java
index b70f9c74..0ba4d08c 100644
--- a/Dozentenmodulserver/src/server/ServerHandler.java
+++ b/Dozentenmodulserver/src/server/ServerHandler.java
@@ -302,12 +302,8 @@ public class ServerHandler implements Server.Iface {
return false;
}
- @Override
- public Map<String, String> getLectureData(String lecturename)
- throws TException {
- // TODO Auto-generated method stub
- return null;
- }
+
+
@Override
public List<Lecture> getLectureList() throws TException {
@@ -412,6 +408,15 @@ public class ServerHandler implements Server.Iface {
}
+ @Override
+ public Map<String, String> getLectureData(String lectureid)
+ throws TException {
+ log.info(new Date() + " - returning LectureData: "
+ + sql.getLectureData(lectureid).size() + "items.");
+ return sql.getLectureData(lectureid);
+ }
+
+
public static int nthIndexOf(final String string, final String token,
final int index)
{