Package org.platformlayer.service.jetty.ops

Examples of org.platformlayer.service.jetty.ops.JettyInstance


  @Override
  protected void addChildren() throws OpsException {
    addChild(TemplatedFile.build(template, new File(template.getInstanceDir(), "realm.properties")));

    JettyInstance jetty = addChild(JettyInstance.class);
    jetty.template = template;

    GerritWarInstance app = injected(GerritWarInstance.class);
    jetty.addApp(app);
  }
View Full Code Here


      addChild(vm);
    }

    vm.addChild(NexusBootstrap.build());

    JettyInstance jetty = vm.addChild(injected(JettyInstance.class));
    jetty.addApp(NexusApp.build());

    vm.addChild(MetricsInstance.class);
  }
View Full Code Here

TOP

Related Classes of org.platformlayer.service.jetty.ops.JettyInstance

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.