blob: ebd92d1efae9ab3a2db52241b1b13dce80591fc2 [file] [log] [blame]
package testcase;
import java.io.IOException;
import javax.servlet.http.*;
public abstract class UnknownMethods extends HttpServlet {
public void test1(HttpServletRequest request, HttpServletResponse response) throws IOException {
response.getWriter().println("hello world!");
}
public void test2(HttpServletRequest request, HttpServletResponse response) throws IOException {
String data = "world!";
response.getWriter().println("hello " + data);
}
}