Package

Source Code of DeploymentManager

import org.vertx.java.deploy.Verticle;

import com.darylteo.deploy.core.Core;
import com.darylteo.deploy.web.WebAdmin;

public class DeploymentManager extends Verticle {

  @Override
  public void start() throws Exception {
    /* Start Web Admin Web Server */
    Core core = new Core(this);
    WebAdmin admin = new WebAdmin(this);
  }

}
TOP

Related Classes of DeploymentManager

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.