Package aQute.jpm.lib

Examples of aQute.jpm.lib.Service.status()


        String status = "no service";
        try {
          Service service = jpm.getService(s);
          if (service != null) {
            runs = service.isRunning() + "";
            status = service.status();
          }
        }
        catch (Exception e) {
          status = e.getMessage();
          exception(e, "could not fetch status information from service %s, due to %s", s, e.getMessage());
View Full Code Here

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.