X-Git-Url: https://git.argeo.org/?a=blobdiff_plain;f=org.argeo.cms%2Fsrc%2Forg%2Fargeo%2Fcms%2Fauth%2FIdentLoginModule.java;fp=org.argeo.cms%2Fsrc%2Forg%2Fargeo%2Fcms%2Fauth%2FIdentLoginModule.java;h=32219dd8794d9bbd2b93108428df5e4a412ee281;hb=4185ff8826f893a4a1f054f61a11b89333c3e85d;hp=f5e4085c32a97e456822e60877c99f8ef121b473;hpb=beec30ca4ad6e0a27b3fe984d987b98988e14e76;p=lgpl%2Fargeo-commons.git diff --git a/org.argeo.cms/src/org/argeo/cms/auth/IdentLoginModule.java b/org.argeo.cms/src/org/argeo/cms/auth/IdentLoginModule.java index f5e4085c3..32219dd87 100644 --- a/org.argeo.cms/src/org/argeo/cms/auth/IdentLoginModule.java +++ b/org.argeo.cms/src/org/argeo/cms/auth/IdentLoginModule.java @@ -34,7 +34,7 @@ public class IdentLoginModule implements LoginModule { public boolean login() throws LoginException { if (callbackHandler == null) return false; - HttpRequestCallback httpCallback = new HttpRequestCallback(); + RemoteAuthCallback httpCallback = new RemoteAuthCallback(); try { callbackHandler.handle(new Callback[] { httpCallback }); } catch (IOException e) { @@ -42,7 +42,7 @@ public class IdentLoginModule implements LoginModule { } catch (UnsupportedCallbackException e) { return false; } - HttpRequest request = httpCallback.getRequest(); + RemoteAuthRequest request = httpCallback.getRequest(); if (request == null) return false; IdentClient identClient = Activator.getIdentClient(request.getRemoteAddr());