diff options
| author | Jonathan Bauer | 2015-07-06 17:24:06 +0200 |
|---|---|---|
| committer | Jonathan Bauer | 2015-07-06 17:24:06 +0200 |
| commit | 713769ba72cb2922fa498b6e5f24193f59abd107 (patch) | |
| tree | 2f196bad527df13a2d219d5a8c36fdbc70fa18f9 /dozentenmodul/src/main/java | |
| parent | Merge branch 'v1.1' of git.openslx.org:openslx-ng/tutor-module into v1.1 (diff) | |
| download | tutor-module-713769ba72cb2922fa498b6e5f24193f59abd107.tar.gz tutor-module-713769ba72cb2922fa498b6e5f24193f59abd107.tar.xz tutor-module-713769ba72cb2922fa498b6e5f24193f59abd107.zip | |
dozentenmodul/src/main/java/gui/core/LoginGUI.java
Diffstat (limited to 'dozentenmodul/src/main/java')
| -rw-r--r-- | dozentenmodul/src/main/java/gui/core/LoginGUI.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dozentenmodul/src/main/java/gui/core/LoginGUI.java b/dozentenmodul/src/main/java/gui/core/LoginGUI.java index 00fb5310..d56fa76e 100644 --- a/dozentenmodul/src/main/java/gui/core/LoginGUI.java +++ b/dozentenmodul/src/main/java/gui/core/LoginGUI.java @@ -11,7 +11,7 @@ import org.eclipse.swt.events.KeyListener; import org.eclipse.swt.events.SelectionAdapter; import org.eclipse.swt.events.SelectionEvent; import org.eclipse.swt.widgets.Shell; -import org.openslx.bwlp.dozmod.thrift.OrganizationList; +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; @@ -41,7 +41,7 @@ public class LoginGUI extends LoginComposite { super(mainShell); // entries in the combo - List<Organization> orgs = OrganizationList.getAll(); + List<Organization> orgs = OrganizationCache.getAll(); if (orgs == null) { LOGGER.error("No organizations received from the cache."); idpCombo.add("No entries"); |
