|
@@ -2,7 +2,6 @@ package net.sf.acegisecurity.providers.jaas;
|
|
|
|
|
|
import net.sf.acegisecurity.Authentication;
|
|
import net.sf.acegisecurity.Authentication;
|
|
|
|
|
|
-import javax.security.auth.callback.CallbackHandler;
|
|
|
|
import javax.security.auth.callback.Callback;
|
|
import javax.security.auth.callback.Callback;
|
|
import javax.security.auth.callback.UnsupportedCallbackException;
|
|
import javax.security.auth.callback.UnsupportedCallbackException;
|
|
import java.io.IOException;
|
|
import java.io.IOException;
|
|
@@ -10,11 +9,13 @@ import java.io.IOException;
|
|
/**
|
|
/**
|
|
* Insert comments here...
|
|
* Insert comments here...
|
|
* <br>
|
|
* <br>
|
|
- * User: raykrueger@users.sourceforge.net<br>
|
|
|
|
- * Date: Jul 15, 2004<br>
|
|
|
|
|
|
+ *
|
|
|
|
+ * @author Ray Krueger
|
|
|
|
+ * @version $Id$
|
|
*/
|
|
*/
|
|
public interface JAASAuthenticationCallbackHandler {
|
|
public interface JAASAuthenticationCallbackHandler {
|
|
void setAuthentication(Authentication auth);
|
|
void setAuthentication(Authentication auth);
|
|
|
|
+
|
|
void handle(Callback callback) throws IOException, UnsupportedCallbackException;
|
|
void handle(Callback callback) throws IOException, UnsupportedCallbackException;
|
|
|
|
|
|
}
|
|
}
|