Package com.ytec.jdap.application.impl

Examples of com.ytec.jdap.application.impl.AppManager


  public static IAppManager appManager;
 
  public static IAppManager getAppManager(){
    synchronized (IAppManager.class) {
      if(appManager ==null){
        appManager = new AppManager();
      }
      return appManager;
    }
  }
View Full Code Here


  /**
   * @param args
   */
  public static void main(String[] args) {
    AppManager app = new AppManager();
    Application application = new Application("1234567890", "test", "1", "D:/mydata/workspace/springSpace/srp/engine", "museengine.jar");
    try {
      app.startApp(application);
      app.stopApp(application);
    } catch (Exception e) {
    }
  }
View Full Code Here

TOP

Related Classes of com.ytec.jdap.application.impl.AppManager

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.