Fix typo in MockFilterChain
This commit is contained in:
parent
64d939bb16
commit
060b37ca8d
|
@ -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");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with 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;
|
import org.springframework.util.Assert;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Mock implementation of the {@link javax.servlet.FilterConfig} interface.
|
* Mock implementation of the {@link javax.servlet.FilterChain} interface.
|
||||||
*
|
*
|
||||||
* <p>Used for testing the web framework; also useful for testing
|
* <p>Used for testing the web framework; also useful for testing
|
||||||
* custom {@link javax.servlet.Filter} implementations.
|
* custom {@link javax.servlet.Filter} implementations.
|
||||||
*
|
*
|
||||||
* @author Juergen Hoeller
|
* @author Juergen Hoeller
|
||||||
* @since 2.0.3
|
* @since 2.0.3
|
||||||
* @see org.springframework.mock.web.MockFilterConfig
|
* @see MockFilterConfig
|
||||||
* @see org.springframework.mock.web.PassThroughFilterChain
|
* @see PassThroughFilterChain
|
||||||
*/
|
*/
|
||||||
public class MockFilterChain implements FilterChain {
|
public class MockFilterChain implements FilterChain {
|
||||||
|
|
||||||
|
|
|
@ -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");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with 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;
|
import org.springframework.util.Assert;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Mock implementation of the {@link javax.servlet.FilterConfig} interface.
|
* Mock implementation of the {@link javax.servlet.FilterChain} interface.
|
||||||
*
|
*
|
||||||
* <p>Used for testing the web framework; also useful for testing
|
* <p>Used for testing the web framework; also useful for testing
|
||||||
* custom {@link javax.servlet.Filter} implementations.
|
* custom {@link javax.servlet.Filter} implementations.
|
||||||
|
|
|
@ -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");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with 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;
|
import org.springframework.util.Assert;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Mock implementation of the {@link javax.servlet.FilterConfig} interface.
|
* Mock implementation of the {@link javax.servlet.FilterChain} interface.
|
||||||
*
|
*
|
||||||
* <p>Used for testing the web framework; also useful for testing
|
* <p>Used for testing the web framework; also useful for testing
|
||||||
* custom {@link javax.servlet.Filter} implementations.
|
* custom {@link javax.servlet.Filter} implementations.
|
||||||
|
|
|
@ -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");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with 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;
|
import org.springframework.util.Assert;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Mock implementation of the {@link javax.servlet.FilterConfig} interface.
|
* Mock implementation of the {@link javax.servlet.FilterChain} interface.
|
||||||
*
|
*
|
||||||
* <p>Used for testing the web framework; also usefol for testing
|
* <p>Used for testing the web framework; also useful for testing
|
||||||
* custom {@link javax.servlet.Filter} implementations.
|
* custom {@link javax.servlet.Filter} implementations.
|
||||||
*
|
*
|
||||||
* @author Juergen Hoeller
|
* @author Juergen Hoeller
|
||||||
|
|
Loading…
Reference in New Issue