Package org.jboss.resteasy.plugins.server.sun.http

Examples of org.jboss.resteasy.plugins.server.sun.http.HttpContextBuilder


   @BeforeClass
   public static void before() throws Exception
   {
      int port = TestPortProvider.getPort();
      httpServer = HttpServer.create(new InetSocketAddress(port), 10);
      contextBuilder = new HttpContextBuilder();
      contextBuilder.getDeployment().getActualResourceClasses().add(SimpleResource.class);
      contextBuilder.bind(httpServer);
      httpServer.start();

   }
View Full Code Here

TOP

Related Classes of org.jboss.resteasy.plugins.server.sun.http.HttpContextBuilder

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.