Package org.apache.geronimo.test.eba.api

Examples of org.apache.geronimo.test.eba.api.Hello


    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        doPost(request,response);
    }

    protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        Hello hello = new Hello();
       
        PrintWriter out = response.getWriter();
        out.println("<html><head><title>Sample Wab Application Bundle</title></head></html>");
        out.println("<body><h1>");
        out.println(hello.sayHello("Web Application Bundle"));
        out.println("</h1></body></html>");
    }
View Full Code Here

TOP

Related Classes of org.apache.geronimo.test.eba.api.Hello

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.