Package net.infopeers.restrant.engine

Examples of net.infopeers.restrant.engine.InvokerBuilderFactory


  private Invoker getInvoker(HttpServletRequest req)
      throws ResourceNotFoundException, MalformedURLException {

    String path = req.getRequestURI().substring(
        req.getContextPath().length());
    InvokerBuilderFactory factory = path2ibf.get(path);
    if (factory == null) {
      factory = path2ibf.get(ibfDefaultName);
    }

    // TODO: 柔軟にするには切り出す。本来は初期化時に行えれば良い
    URL url = new URL(req.getRequestURL().toString());
    String host = url.getHost();
    factory.setEvery(host.equals("localhost"));

    Invoker invoker = factory.getInvokerBuilder().build(this, req);
    return invoker;
  }
View Full Code Here

TOP

Related Classes of net.infopeers.restrant.engine.InvokerBuilderFactory

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.