Examples of availableServices()


Examples of org.apache.whirr.service.ServiceFactory.availableServices()

    }
    stream.println();
    stream.println("Available services:");
    ServiceFactory serviceFactory = new ServiceFactory();
    for (String serviceName : new TreeSet<String>(
        serviceFactory.availableServices())) {
      stream.println("  " + serviceName);
    }
  }
  public static void main(String... args) throws Exception {
    Main main = new Main(
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.