summaryrefslogtreecommitdiffstats
path: root/Dozentenmodul/src/models/Client.java
diff options
context:
space:
mode:
authorTobias Spitzer2014-05-15 11:17:06 +0200
committerTobias Spitzer2014-05-15 11:17:06 +0200
commit32dff35f3cf3a74f62b64105fd57f7da0e2027dc (patch)
treef60fa38f526b7d1167342335c2cfa0c393a84466 /Dozentenmodul/src/models/Client.java
parentMerge branch 'master' of ssh://git.openslx.org/openslx-ng/tutor-module (diff)
downloadtutor-module-32dff35f3cf3a74f62b64105fd57f7da0e2027dc.tar.gz
tutor-module-32dff35f3cf3a74f62b64105fd57f7da0e2027dc.tar.xz
tutor-module-32dff35f3cf3a74f62b64105fd57f7da0e2027dc.zip
Es wird nur noch eine Verbindung zum bwLehrpoolSuite Server geöffnet.
Diffstat (limited to 'Dozentenmodul/src/models/Client.java')
-rw-r--r--Dozentenmodul/src/models/Client.java19
1 files changed, 19 insertions, 0 deletions
diff --git a/Dozentenmodul/src/models/Client.java b/Dozentenmodul/src/models/Client.java
new file mode 100644
index 00000000..6dc587f1
--- /dev/null
+++ b/Dozentenmodul/src/models/Client.java
@@ -0,0 +1,19 @@
+package models;
+
+public class Client {
+
+ private server.Server.Client client;
+
+ public static Client clientcon=new Client();
+
+ public server.Server.Client getClient() {
+ return client;
+ }
+
+ public void setClient(server.Server.Client client) {
+ this.client = client;
+ }
+
+
+
+}