mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-06-17 09:32:14 +00:00
Restoring author/version tags, some minor comments.
This commit is contained in:
parent
20d69e2734
commit
2d1dd7b292
@ -44,6 +44,9 @@ import org.springframework.util.Assert;
|
|||||||
* CasProcessingFilter#CAS_STATELESS_IDENTIFIER}. It can also validate a
|
* CasProcessingFilter#CAS_STATELESS_IDENTIFIER}. It can also validate a
|
||||||
* previously created {@link CasAuthenticationToken}.
|
* previously created {@link CasAuthenticationToken}.
|
||||||
* </p>
|
* </p>
|
||||||
|
*
|
||||||
|
* @author Ben Alex
|
||||||
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
public class CasAuthenticationProvider implements AuthenticationProvider,
|
public class CasAuthenticationProvider implements AuthenticationProvider,
|
||||||
InitializingBean, MessageSourceAware {
|
InitializingBean, MessageSourceAware {
|
||||||
|
@ -40,6 +40,9 @@ import org.springframework.util.Assert;
|
|||||||
* The request will typically originate from {@link
|
* The request will typically originate from {@link
|
||||||
* org.acegisecurity.ui.x509.X509ProcessingFilter}).
|
* org.acegisecurity.ui.x509.X509ProcessingFilter}).
|
||||||
* </p>
|
* </p>
|
||||||
|
*
|
||||||
|
* @author Luke Taylor
|
||||||
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
public class X509AuthenticationProvider implements AuthenticationProvider,
|
public class X509AuthenticationProvider implements AuthenticationProvider,
|
||||||
InitializingBean, MessageSourceAware {
|
InitializingBean, MessageSourceAware {
|
||||||
|
@ -30,7 +30,8 @@ import java.security.cert.X509Certificate;
|
|||||||
* it should throw a {@link org.acegisecurity.BadCredentialsException}.
|
* it should throw a {@link org.acegisecurity.BadCredentialsException}.
|
||||||
* </p>
|
* </p>
|
||||||
*
|
*
|
||||||
* @author Luke
|
* @author Luke Taylor
|
||||||
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
public interface X509AuthoritiesPopulator {
|
public interface X509AuthoritiesPopulator {
|
||||||
/**
|
/**
|
||||||
|
@ -36,7 +36,7 @@ import java.security.cert.X509Certificate;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Caches <code>User</code> objects using a Spring IoC defined <a
|
* Caches <code>User</code> objects using a Spring IoC defined <a
|
||||||
* HREF="http://ehcache.sourceforge.net">EHCACHE</a>.
|
* href="http://ehcache.sourceforge.net">EHCACHE</a>.
|
||||||
*
|
*
|
||||||
* @author Luke Taylor
|
* @author Luke Taylor
|
||||||
* @author Ben Alex
|
* @author Ben Alex
|
||||||
|
@ -41,6 +41,9 @@ import org.springframework.util.Assert;
|
|||||||
/**
|
/**
|
||||||
* Populates the X509 authorities via an {@link
|
* Populates the X509 authorities via an {@link
|
||||||
* org.acegisecurity.userdetails.UserDetailsService}.
|
* org.acegisecurity.userdetails.UserDetailsService}.
|
||||||
|
*
|
||||||
|
* @author Luke Taylor
|
||||||
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
public class DaoX509AuthoritiesPopulator implements X509AuthoritiesPopulator,
|
public class DaoX509AuthoritiesPopulator implements X509AuthoritiesPopulator,
|
||||||
InitializingBean, MessageSourceAware {
|
InitializingBean, MessageSourceAware {
|
||||||
|
@ -30,7 +30,7 @@ import org.acegisecurity.userdetails.UserDetails;
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Tests {@link org.acegisecurity.providers.x509.X509AuthenticationProvider}
|
* Tests {@link X509AuthenticationProvider}
|
||||||
*
|
*
|
||||||
* @author Luke Taylor
|
* @author Luke Taylor
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
|
@ -19,9 +19,10 @@ import junit.framework.TestCase;
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* DOCUMENT ME!
|
* Tests for {@link X509AuthenticationToken}.
|
||||||
*
|
*
|
||||||
* @author Luke Taylor
|
* @author Luke Taylor
|
||||||
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
public class X509AuthenticationTokenTests extends TestCase {
|
public class X509AuthenticationTokenTests extends TestCase {
|
||||||
//~ Constructors ===========================================================
|
//~ Constructors ===========================================================
|
||||||
|
@ -20,7 +20,10 @@ import java.security.cert.CertificateFactory;
|
|||||||
import java.io.ByteArrayInputStream;
|
import java.io.ByteArrayInputStream;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* Certificate creation utility for use in X.509 tests.
|
||||||
|
*
|
||||||
* @author Luke Taylor
|
* @author Luke Taylor
|
||||||
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
public class X509TestUtils {
|
public class X509TestUtils {
|
||||||
|
|
||||||
|
@ -30,7 +30,7 @@ import org.springframework.context.ApplicationContext;
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* DOCUMENT ME!
|
* Tests for {@link EhCacheBasedX509UserCache}.
|
||||||
*
|
*
|
||||||
* @author Luke Taylor
|
* @author Luke Taylor
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
|
@ -31,9 +31,10 @@ import org.springframework.dao.DataAccessException;
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* DOCUMENT ME!
|
* Tests for {@link DaoX509AuthoritiesPopulator}
|
||||||
*
|
*
|
||||||
* @author Luke Taylor
|
* @author Luke Taylor
|
||||||
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
public class DaoX509AuthoritiesPopulatorTests extends TestCase {
|
public class DaoX509AuthoritiesPopulatorTests extends TestCase {
|
||||||
//~ Constructors ===========================================================
|
//~ Constructors ===========================================================
|
||||||
|
Loading…
x
Reference in New Issue
Block a user