diff options
Diffstat (limited to 'dozentenmodul/src/main/java/auth/BaseAuthenticator.java')
| -rw-r--r-- | dozentenmodul/src/main/java/auth/BaseAuthenticator.java | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/dozentenmodul/src/main/java/auth/BaseAuthenticator.java b/dozentenmodul/src/main/java/auth/BaseAuthenticator.java index bebbff02..d52c5343 100644 --- a/dozentenmodul/src/main/java/auth/BaseAuthenticator.java +++ b/dozentenmodul/src/main/java/auth/BaseAuthenticator.java @@ -1,9 +1,8 @@ package auth; +import org.openslx.bwlp.thrift.iface.TAuthenticationException; import org.openslx.bwlp.thrift.iface.UserInfo; -import edu.kit.scc.dei.ecplean.ECPAuthenticationException; - /** * @author Jonathan Bauer * @@ -27,5 +26,5 @@ public interface BaseAuthenticator { * @param callback The callback function to be called after the login * @throws ECPAuthenticationException */ - void login(String username, String password, AuthenticatorCallback callback) throws ECPAuthenticationException; + void login(String username, String password, AuthenticatorCallback callback) throws TAuthenticationException; }
\ No newline at end of file |
