Package org.jboss.shrinkwrap.undertow.api

Examples of org.jboss.shrinkwrap.undertow.api.UndertowHttpHandlerArchive


    return new ProtocolMetaData().addContext(httpContext);
  }

  private HTTPContext registerHandler(Archive<?> archive) {
   
    UndertowHttpHandlerArchive handler = (UndertowHttpHandlerArchive)archive;
    this.undertow = createUndertow(handler.getHttpHandler());
    this.undertow.start();
   
    HTTPContext httpContext = new HTTPContext(
        configuration.getBindAddress(), configuration.getBindHttpPort());
   
View Full Code Here

TOP

Related Classes of org.jboss.shrinkwrap.undertow.api.UndertowHttpHandlerArchive

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.