Removed unused import in DelegatingAuthenticationEntryPoint and corrected test class name.

This commit is contained in:
Luke Taylor 2010-02-14 23:31:31 +00:00
parent d30e31d816
commit c1133d1ef3
2 changed files with 13 additions and 17 deletions

View File

@ -17,7 +17,6 @@ package org.springframework.security.web.authentication;
import java.io.IOException;
import java.util.LinkedHashMap;
import java.util.Map;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
@ -51,10 +50,8 @@ import org.springframework.util.Assert;
*
* This example uses the {@link RequestMatcherEditor} which creates {@link ELRequestMatcher} instances for the map keys.
*
*
* @author Mike Wiesner
* @since 3.0.2
* @version $Id:$
*/
public class DelegatingAuthenticationEntryPoint implements
AuthenticationEntryPoint, InitializingBean {

View File

@ -1,6 +1,5 @@
package org.springframework.security.web.authentication;
import static org.junit.Assert.*;
import static org.mockito.Mockito.*;
import javax.servlet.http.HttpServletRequest;
@ -19,7 +18,7 @@ import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = "classpath:org/springframework/security/web/authentication/DelegatingAuthenticationEntryPointTest-context.xml")
public class DelegatinAuthenticationEntryPointContextTest {
public class DelegatingAuthenticationEntryPointContextTest {
@Autowired
private DelegatingAuthenticationEntryPoint daep;