Package com.google.gerrit.httpd.rpc

Examples of com.google.gerrit.httpd.rpc.RpcServletModule


/** RPC support related to username/password LDAP authentication. */
public class LdapAuthModule extends ServletModule {
  @Override
  protected void configureServlets() {
    serve("/login/*").with(LoginRedirectServlet.class);
    install(new RpcServletModule(UiRpcModule.PREFIX) {
      @Override
      protected void configureServlets() {
        rpc(UserPassAuthServiceImpl.class);
      }
    });
View Full Code Here


  protected void configureServlets() {
    serve("/" + OpenIdServiceImpl.RETURN_URL).with(OpenIdLoginServlet.class);
    serve("/" + XrdsServlet.LOCATION).with(XrdsServlet.class);
    filter("/").through(XrdsFilter.class);

    install(new RpcServletModule(RpcServletModule.PREFIX) {
      @Override
      protected void configureServlets() {
        rpc(OpenIdServiceImpl.class);
      }
    });
View Full Code Here

TOP

Related Classes of com.google.gerrit.httpd.rpc.RpcServletModule

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.