Package net.sf.libgrowl

Examples of net.sf.libgrowl.GrowlConnector.register()


 
  public void send(String clientIp, String password, Message message){
    String messageText = message.getMessageText();
    GrowlConnector growl = new GrowlConnector(clientIp);
    growl.setPassword(password);
    growl.register(jenkinsApp,  new NotificationType[] { buildNotify } );

    Notification jenkinsNotify = new Notification(jenkinsApp, buildNotify, buildName, messageText);
    jenkinsNotify.setSticky(true);
    jenkinsNotify.setCallBackURL(message.getUrl());
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.