diff options
Diffstat (limited to 'dozentenmodul/src/main/java/gui/lecture/EditLectureSearch_GUI.java')
| -rw-r--r-- | dozentenmodul/src/main/java/gui/lecture/EditLectureSearch_GUI.java | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/dozentenmodul/src/main/java/gui/lecture/EditLectureSearch_GUI.java b/dozentenmodul/src/main/java/gui/lecture/EditLectureSearch_GUI.java index 064ad5af..a3119b79 100644 --- a/dozentenmodul/src/main/java/gui/lecture/EditLectureSearch_GUI.java +++ b/dozentenmodul/src/main/java/gui/lecture/EditLectureSearch_GUI.java @@ -61,10 +61,9 @@ import models.SessionData; import models.person; import org.apache.thrift.TException; +import org.openslx.sat.thrift.iface.Server.Client; -import server.generated.Server.Client; import thrift.ThriftConnection; -import util.GuiOrganizer; import util.OpenLinks; @SuppressWarnings("serial") @@ -665,7 +664,7 @@ public class EditLectureSearch_GUI extends JFrame { // Initiale Beffuelung eines Table models public DefaultTableModel initTableModel(DefaultTableModel model) throws ParseException { - List<server.generated.Lecture> lectures; + List<org.openslx.sat.thrift.iface.Lecture> lectures; try { // Hole eine Liste der erlaubten Images für die diese Person @@ -677,7 +676,7 @@ public class EditLectureSearch_GUI extends JFrame { lectures = client.getLectureListPermissionWrite(SessionData.session.getAuthToken()); } - Iterator<server.generated.Lecture> i = lectures.iterator(); + Iterator<org.openslx.sat.thrift.iface.Lecture> i = lectures.iterator(); SimpleDateFormat in = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); SimpleDateFormat out = new SimpleDateFormat("dd.MM.yyyy HH:mm:ss"); int x = 0; |
