Package com.squareup.rack

Examples of com.squareup.rack.RackEnvironment


    while (attributeNames.hasMoreElements()) {
      String name = attributeNames.nextElement();
      content.put(name, request.getAttribute(name));
    }

    return new RackEnvironment(content.build());
  }
View Full Code Here


    this.rackResponsePropagator = rackResponsePropagator;
  }

  @Override protected void service(HttpServletRequest request, HttpServletResponse response)
      throws ServletException, IOException {
    RackEnvironment rackEnvironment = rackEnvironmentBuilder.build(request);

    try {
      RackResponse rackResponse = rackApplication.call(rackEnvironment);
      rackResponsePropagator.propagate(rackResponse, response);
    } finally {
      rackEnvironment.closeRackInput();
    }
  }
View Full Code Here

TOP

Related Classes of com.squareup.rack.RackEnvironment

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.