|
|
|
@ -13,6 +13,7 @@ |
|
|
|
* See the License for the specific language governing permissions and |
|
|
|
* See the License for the specific language governing permissions and |
|
|
|
* limitations under the License. |
|
|
|
* limitations under the License. |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
|
|
|
|
|
|
|
|
package org.springframework.web.testfixture.servlet; |
|
|
|
package org.springframework.web.testfixture.servlet; |
|
|
|
|
|
|
|
|
|
|
|
import javax.servlet.http.HttpServletMapping; |
|
|
|
import javax.servlet.http.HttpServletMapping; |
|
|
|
@ -72,9 +73,9 @@ public class MockHttpServletMapping implements HttpServletMapping { |
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public String toString() { |
|
|
|
public String toString() { |
|
|
|
return "MockHttpServletMapping [matchValue=\"" + matchValue + "\", " + |
|
|
|
return "MockHttpServletMapping [matchValue=\"" + this.matchValue + "\", " + |
|
|
|
"pattern=\"" + pattern + "\", servletName=\"" + servletName + "\", " + |
|
|
|
"pattern=\"" + this.pattern + "\", servletName=\"" + this.servletName + "\", " + |
|
|
|
"mappingMatch=" + mappingMatch + "]"; |
|
|
|
"mappingMatch=" + this.mappingMatch + "]"; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|