Package org.araneaframework.servlet

Examples of org.araneaframework.servlet.ServletInputData


  protected void destroy() throws Exception {
    childService._getComponent().destroy();
  }
 
  public void service(HttpServletRequest request, HttpServletResponse response) throws Exception {
    ServletInputData input = new StandardServletInputData(request);
    ServletOutputData output = new StandardServletOutputData(request, response);

    request.setAttribute(INPUT_DATA_REQUEST_ATTRIBUTE, input);
    request.setAttribute(OUTPUT_DATA_REQUEST_ATTRIBUTE, output);
View Full Code Here

TOP

Related Classes of org.araneaframework.servlet.ServletInputData

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.