Package org.apache.zookeeper.server.jersey.cfg

Examples of org.apache.zookeeper.server.jersey.cfg.RestCfg


   /**
    * The entry point for starting the server
    *
    */
   public static void main(String[] args) throws Exception {
       RestCfg cfg = new RestCfg("rest.properties");

       final RestMain main = new RestMain(cfg);
       main.start();

       Runtime.getRuntime().addShutdownHook(new Thread() {
View Full Code Here


   @Before
   public void setUp() throws Exception {
       super.setUp();

       RestCfg cfg = new RestCfg(new ByteArrayInputStream(String.format(
               "rest.port=%s\n" +
               "rest.endpoint.1=%s;%s\n",
               GRIZZLY_PORT, CONTEXT_PATH, ZKHOSTPORT).getBytes()));

       rest = new RestMain(cfg);
View Full Code Here

TOP

Related Classes of org.apache.zookeeper.server.jersey.cfg.RestCfg

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.