Package co.cask.cdap.gateway.router.handlers

Examples of co.cask.cdap.gateway.router.handlers.HttpRequestHandler


            pipeline.addLast("access-token-authenticator", new SecurityAuthenticationHttpHandler(
              realm, tokenValidator, configuration, accessTokenTransformer, discoveryServiceClient));
          }
          // for now there's only one hardcoded rule, but if there will be more, we may want it generic and configurable
          pipeline.addLast("http-request-handler",
                           new HttpRequestHandler(clientBootstrap, serviceLookup,
                                                  ImmutableList.<ProxyRule>of(new DatasetsProxyRule(configuration))));
          return pipeline;
        }
      }
    );
View Full Code Here

TOP

Related Classes of co.cask.cdap.gateway.router.handlers.HttpRequestHandler

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.