Package com.esri.gpt.server.csw.provider.local

Examples of com.esri.gpt.server.csw.provider.local.ProviderFactory


   * @return the request handler
   */
  protected RequestHandler makeRequestHandler(HttpServletRequest request,
                                              HttpServletResponse response,
                                              RequestContext context) {
    IProviderFactory factory = new ProviderFactory();
    RequestHandler handler = factory.makeRequestHandler(
        request,context,this.cswSubContextPath,this.resourceFilePrefix);
    if (handler != null) {
      handler.getOperationContext().getServiceProperties().setAllowTransactions(this.allowTransactions);
    }
    return handler;
View Full Code Here

TOP

Related Classes of com.esri.gpt.server.csw.provider.local.ProviderFactory

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.