Author: markt Date: Thu May 10 20:08:45 2012 New Revision: 1336868 URL: http://svn.apache.org/viewvc?rev=1336868&view=rev Log: Add missing file from r1336864
Added: tomcat/trunk/test/org/apache/catalina/connector/TesterMockRequest.java (with props) Added: tomcat/trunk/test/org/apache/catalina/connector/TesterMockRequest.java URL: http://svn.apache.org/viewvc/tomcat/trunk/test/org/apache/catalina/connector/TesterMockRequest.java?rev=1336868&view=auto ============================================================================== --- tomcat/trunk/test/org/apache/catalina/connector/TesterMockRequest.java (added) +++ tomcat/trunk/test/org/apache/catalina/connector/TesterMockRequest.java Thu May 10 20:08:45 2012 @@ -0,0 +1,39 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.catalina.connector; + +public class TesterMockRequest extends Request { + @Override + public String getScheme() { + return "http"; + } + + @Override + public String getServerName() { + return "localhost"; + } + + @Override + public int getServerPort() { + return 8080; + } + + @Override + public String getDecodedRequestURI() { + return "/level1/level2/foo.html"; + } +} Propchange: tomcat/trunk/test/org/apache/catalina/connector/TesterMockRequest.java ------------------------------------------------------------------------------ svn:eol-style = native --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org