diff --git a/spring-orm/src/test/java/org/springframework/mock/web/MockFilterChain.java b/spring-orm/src/test/java/org/springframework/mock/web/MockFilterChain.java index a157d8d960..48ba862b70 100644 --- a/spring-orm/src/test/java/org/springframework/mock/web/MockFilterChain.java +++ b/spring-orm/src/test/java/org/springframework/mock/web/MockFilterChain.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2009 the original author or authors. + * Copyright 2002-2012 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -23,15 +23,15 @@ import javax.servlet.ServletResponse; import org.springframework.util.Assert; /** - * Mock implementation of the {@link javax.servlet.FilterConfig} interface. + * Mock implementation of the {@link javax.servlet.FilterChain} interface. * *
Used for testing the web framework; also useful for testing * custom {@link javax.servlet.Filter} implementations. * * @author Juergen Hoeller * @since 2.0.3 - * @see org.springframework.mock.web.MockFilterConfig - * @see org.springframework.mock.web.PassThroughFilterChain + * @see MockFilterConfig + * @see PassThroughFilterChain */ public class MockFilterChain implements FilterChain { diff --git a/spring-test/src/main/java/org/springframework/mock/web/MockFilterChain.java b/spring-test/src/main/java/org/springframework/mock/web/MockFilterChain.java index 24a9d801fa..48ba862b70 100644 --- a/spring-test/src/main/java/org/springframework/mock/web/MockFilterChain.java +++ b/spring-test/src/main/java/org/springframework/mock/web/MockFilterChain.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2009 the original author or authors. + * Copyright 2002-2012 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -23,7 +23,7 @@ import javax.servlet.ServletResponse; import org.springframework.util.Assert; /** - * Mock implementation of the {@link javax.servlet.FilterConfig} interface. + * Mock implementation of the {@link javax.servlet.FilterChain} interface. * *
Used for testing the web framework; also useful for testing * custom {@link javax.servlet.Filter} implementations. diff --git a/spring-web/src/test/java/org/springframework/mock/web/MockFilterChain.java b/spring-web/src/test/java/org/springframework/mock/web/MockFilterChain.java index 04281abde1..48ba862b70 100644 --- a/spring-web/src/test/java/org/springframework/mock/web/MockFilterChain.java +++ b/spring-web/src/test/java/org/springframework/mock/web/MockFilterChain.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2011 the original author or authors. + * Copyright 2002-2012 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -23,7 +23,7 @@ import javax.servlet.ServletResponse; import org.springframework.util.Assert; /** - * Mock implementation of the {@link javax.servlet.FilterConfig} interface. + * Mock implementation of the {@link javax.servlet.FilterChain} interface. * *
Used for testing the web framework; also useful for testing * custom {@link javax.servlet.Filter} implementations. diff --git a/spring-webmvc/src/test/java/org/springframework/mock/web/MockFilterChain.java b/spring-webmvc/src/test/java/org/springframework/mock/web/MockFilterChain.java index 3f74cac8b5..48ba862b70 100644 --- a/spring-webmvc/src/test/java/org/springframework/mock/web/MockFilterChain.java +++ b/spring-webmvc/src/test/java/org/springframework/mock/web/MockFilterChain.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2009 the original author or authors. + * Copyright 2002-2012 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -23,9 +23,9 @@ import javax.servlet.ServletResponse; import org.springframework.util.Assert; /** - * Mock implementation of the {@link javax.servlet.FilterConfig} interface. + * Mock implementation of the {@link javax.servlet.FilterChain} interface. * - *
Used for testing the web framework; also usefol for testing + *
Used for testing the web framework; also useful for testing * custom {@link javax.servlet.Filter} implementations. * * @author Juergen Hoeller