Added correct @author and @version tags, more Javadocs to follow
This commit is contained in:
parent
3360e2d51a
commit
da7895087b
|
@ -5,8 +5,9 @@ import java.security.Principal;
|
|||
/**
|
||||
* Insert comments here...
|
||||
* <br>
|
||||
* User: raykrueger@users.sourceforge.net<br>
|
||||
* Date: Jul 15, 2004<br>
|
||||
*
|
||||
* @author Ray Krueger
|
||||
* @version $Id$
|
||||
*/
|
||||
public interface AuthorityGranter {
|
||||
public String grant(Principal principal);
|
||||
|
|
|
@ -2,7 +2,6 @@ package net.sf.acegisecurity.providers.jaas;
|
|||
|
||||
import net.sf.acegisecurity.Authentication;
|
||||
|
||||
import javax.security.auth.callback.CallbackHandler;
|
||||
import javax.security.auth.callback.Callback;
|
||||
import javax.security.auth.callback.UnsupportedCallbackException;
|
||||
import java.io.IOException;
|
||||
|
@ -10,11 +9,13 @@ import java.io.IOException;
|
|||
/**
|
||||
* Insert comments here...
|
||||
* <br>
|
||||
* User: raykrueger@users.sourceforge.net<br>
|
||||
* Date: Jul 15, 2004<br>
|
||||
*
|
||||
* @author Ray Krueger
|
||||
* @version $Id$
|
||||
*/
|
||||
public interface JAASAuthenticationCallbackHandler {
|
||||
void setAuthentication(Authentication auth);
|
||||
|
||||
void handle(Callback callback) throws IOException, UnsupportedCallbackException;
|
||||
|
||||
}
|
||||
|
|
|
@ -7,8 +7,9 @@ import java.security.Principal;
|
|||
/**
|
||||
* Insert comments here...
|
||||
* <br>
|
||||
* User: raykrueger@users.sourceforge.net<br>
|
||||
* Date: Jul 15, 2004<br>
|
||||
*
|
||||
* @author Ray Krueger
|
||||
* @version $Id$
|
||||
*/
|
||||
public class JAASGrantedAuthority extends GrantedAuthorityImpl {
|
||||
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
package net.sf.acegisecurity.providers.jaas;
|
||||
|
||||
import net.sf.acegisecurity.Authentication;
|
||||
import net.sf.acegisecurity.providers.jaas.JAASAuthenticationCallbackHandler;
|
||||
|
||||
import javax.security.auth.callback.Callback;
|
||||
import javax.security.auth.callback.NameCallback;
|
||||
|
@ -11,8 +10,9 @@ import java.io.IOException;
|
|||
/**
|
||||
* Insert comments here...
|
||||
* <br>
|
||||
* User: raykrueger@users.sourceforge.net<br>
|
||||
* Date: Jul 15, 2004<br>
|
||||
*
|
||||
* @author Ray Krueger
|
||||
* @version $Id$
|
||||
*/
|
||||
public class JAASNameCallbackHandler implements JAASAuthenticationCallbackHandler {
|
||||
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
package net.sf.acegisecurity.providers.jaas;
|
||||
|
||||
import net.sf.acegisecurity.Authentication;
|
||||
import net.sf.acegisecurity.providers.jaas.JAASAuthenticationCallbackHandler;
|
||||
|
||||
import javax.security.auth.callback.Callback;
|
||||
import javax.security.auth.callback.PasswordCallback;
|
||||
|
@ -11,8 +10,9 @@ import java.io.IOException;
|
|||
/**
|
||||
* Insert comments here...
|
||||
* <br>
|
||||
* User: raykrueger@users.sourceforge.net<br>
|
||||
* Date: Jul 15, 2004<br>
|
||||
*
|
||||
* @author Ray Krueger
|
||||
* @version $Id$
|
||||
*/
|
||||
public class JAASPasswordCallbackHandler implements JAASAuthenticationCallbackHandler {
|
||||
|
||||
|
|
|
@ -6,8 +6,9 @@ import org.springframework.context.ApplicationEvent;
|
|||
/**
|
||||
* Insert comments here...
|
||||
* <br>
|
||||
* User: raykrueger@users.sourceforge.net<br>
|
||||
* Date: Jul 15, 2004<br>
|
||||
*
|
||||
* @author Ray Krueger
|
||||
* @version $Id$
|
||||
*/
|
||||
public abstract class JAASAuthenticationEvent extends ApplicationEvent {
|
||||
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
package net.sf.acegisecurity.providers.jaas.event;
|
||||
|
||||
import net.sf.acegisecurity.Authentication;
|
||||
import net.sf.acegisecurity.providers.jaas.event.JAASAuthenticationEvent;
|
||||
|
||||
/**
|
||||
* Insert comments here...
|
||||
* <br>
|
||||
* User: raykrueger@users.sourceforge.net<br>
|
||||
* Date: Jul 15, 2004<br>
|
||||
*
|
||||
* @author Ray Krueger
|
||||
* @version $Id$
|
||||
*/
|
||||
public class JAASAuthenticationFailedEvent extends JAASAuthenticationEvent {
|
||||
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
package net.sf.acegisecurity.providers.jaas.event;
|
||||
|
||||
import net.sf.acegisecurity.Authentication;
|
||||
import net.sf.acegisecurity.providers.jaas.event.JAASAuthenticationEvent;
|
||||
|
||||
/**
|
||||
* Insert comments here...
|
||||
* <br>
|
||||
* User: raykrueger@users.sourceforge.net<br>
|
||||
* Date: Jul 15, 2004<br>
|
||||
*
|
||||
* @author Ray Krueger
|
||||
* @version $Id$
|
||||
*/
|
||||
public class JAASAuthenticationSuccessEvent extends JAASAuthenticationEvent {
|
||||
|
||||
|
|
|
@ -14,8 +14,9 @@ import java.util.List;
|
|||
/**
|
||||
* Insert comments here...
|
||||
* <br>
|
||||
* User: raykrueger@users.sourceforge.net<br>
|
||||
* Date: Jul 16, 2004<br>
|
||||
*
|
||||
* @author Ray Krueger
|
||||
* @version $Id$
|
||||
*/
|
||||
public class JAASAuthenticationProviderTests extends TestCase {
|
||||
|
||||
|
|
|
@ -1,14 +1,13 @@
|
|||
package net.sf.acegisecurity.providers.jaas;
|
||||
|
||||
import net.sf.acegisecurity.providers.jaas.AuthorityGranter;
|
||||
|
||||
import java.security.Principal;
|
||||
|
||||
/**
|
||||
* Insert comments here...
|
||||
* <br>
|
||||
* User: raykrueger@users.sourceforge.net<br>
|
||||
* Date: Jul 16, 2004<br>
|
||||
*
|
||||
* @author Ray Krueger
|
||||
* @version $Id$
|
||||
*/
|
||||
public class TestAuthorityGranter implements AuthorityGranter {
|
||||
public String grant(Principal principal) {
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
package net.sf.acegisecurity.providers.jaas;
|
||||
|
||||
import net.sf.acegisecurity.Authentication;
|
||||
import net.sf.acegisecurity.providers.jaas.JAASAuthenticationCallbackHandler;
|
||||
|
||||
import javax.security.auth.callback.Callback;
|
||||
import javax.security.auth.callback.TextInputCallback;
|
||||
|
@ -11,8 +10,9 @@ import java.io.IOException;
|
|||
/**
|
||||
* Insert comments here...
|
||||
* <br>
|
||||
* User: raykrueger@users.sourceforge.net<br>
|
||||
* Date: Jul 16, 2004<br>
|
||||
*
|
||||
* @author Ray Krueger
|
||||
* @version $Id$
|
||||
*/
|
||||
public class TestCallbackHandler implements JAASAuthenticationCallbackHandler {
|
||||
|
||||
|
|
|
@ -10,8 +10,9 @@ import java.util.Map;
|
|||
/**
|
||||
* Insert comments here...
|
||||
* <br>
|
||||
* @author raykrueger@users.sourceforge.net<br>
|
||||
* Date: Jul 16, 2004<br>
|
||||
*
|
||||
* @author Ray Krueger
|
||||
* @version $Id$
|
||||
*/
|
||||
public class TestLoginModule implements LoginModule {
|
||||
|
||||
|
|
Loading…
Reference in New Issue