Package hudson.plugins.im.build_notify

Examples of hudson.plugins.im.build_notify.DefaultBuildToChatNotifier


        boolean notifySuspects,
        boolean notifyCulprits,
        boolean notifyFixers,
        boolean notifyUpstreamCommitters) {
        this(defaultTargets,notificationStrategyString,notifyGroupChatsOnBuildStart,notifySuspects,notifyCulprits,
                notifyFixers,notifyUpstreamCommitters,new DefaultBuildToChatNotifier(), MatrixJobMultiplier.ALL);
    }
View Full Code Here


      if (this.strategy == null && this.notificationStrategy != null) {
        this.strategy = NotificationStrategy.valueOf(this.notificationStrategy.name());
        this.notificationStrategy = null;
      }
        if (buildToChatNotifier == null) {
            this.buildToChatNotifier = new DefaultBuildToChatNotifier();
        }
        if (matrixMultiplier == null) {
            this.matrixMultiplier = MatrixJobMultiplier.ONLY_CONFIGURATIONS;
        }
      return this;
View Full Code Here

    }
   
    private static class IMTestPublisher extends IMPublisher {
        public IMTestPublisher() {
            super(Collections.<IMMessageTarget>emptyList(), NotificationStrategy.FAILURE_AND_FIXED.getDisplayName(),
                    true, true, true, true, true, new DefaultBuildToChatNotifier(), MatrixJobMultiplier.ALL);
        }
View Full Code Here

TOP

Related Classes of hudson.plugins.im.build_notify.DefaultBuildToChatNotifier

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.