diff options
| author | Jonathan Bauer | 2015-07-06 17:26:21 +0200 |
|---|---|---|
| committer | Jonathan Bauer | 2015-07-06 17:26:21 +0200 |
| commit | 6871becb8f08b727e3dab2cdb53ffd3c55182d1e (patch) | |
| tree | f4d29713796e2b98a47c26c4a55fa5c86452875a | |
| parent | dozentenmodul/src/main/java/gui/core/LoginGUI.java (diff) | |
| download | tutor-module-6871becb8f08b727e3dab2cdb53ffd3c55182d1e.tar.gz tutor-module-6871becb8f08b727e3dab2cdb53ffd3c55182d1e.tar.xz tutor-module-6871becb8f08b727e3dab2cdb53ffd3c55182d1e.zip | |
[client] hardcode test sat ip for the new server api
| -rw-r--r-- | dozentenmodul/src/main/java/gui/core/LoginGUI.java | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/dozentenmodul/src/main/java/gui/core/LoginGUI.java b/dozentenmodul/src/main/java/gui/core/LoginGUI.java index d56fa76e..9f204b1b 100644 --- a/dozentenmodul/src/main/java/gui/core/LoginGUI.java +++ b/dozentenmodul/src/main/java/gui/core/LoginGUI.java @@ -15,6 +15,7 @@ import org.openslx.bwlp.dozmod.thrift.OrganizationCache; import org.openslx.bwlp.thrift.iface.Organization; import org.openslx.bwlp.thrift.iface.TAuthenticationException; import org.openslx.bwlp.thrift.iface.UserInfo; +import org.openslx.thrifthelper.ThriftManager; import util.ShibbolethECP.ReturnCode; import auth.BWIDMAuthenticator; @@ -172,8 +173,10 @@ public class LoginGUI extends LoginComposite { GuiManager.showMessage("Internal error!"); break; } - } else + } else { + ThriftManager.setSatellite("132.230.8.113"); GuiManager.addContent(new DisclaimerComposite(getShell())); + } } }); } catch (TAuthenticationException e) { |
