Examples of RpcServletModule


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

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

  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
Copyright © 2018 www.massapi.com. 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.