Package hudson.plugins.growl.growler

Examples of hudson.plugins.growl.growler.Growler


      try {
        String [] clients = IP.replace(" ","").split(",");
        for(String clientIp : clients) {
          if (Pinger.host(clientIp)) {
            LOGGER.log(Level.INFO, "Sending Growl to " + clientIp + "...");
            new Growler().send(clientIp, password, message);
          } else {
            LOGGER.log(Level.INFO, "Cannot send   Growl to " + clientIp + ", host is down.");
          }
        }
      } catch (Exception e) {
View Full Code Here

TOP

Related Classes of hudson.plugins.growl.growler.Growler

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.