Package com.sonyericsson.hudson.plugins.gerrit.trigger.gerritnotifier.job.rest

Examples of com.sonyericsson.hudson.plugins.gerrit.trigger.gerritnotifier.job.rest.BuildStartedRestCommandJob


        String serverName = getServerName(event);
        if (serverName != null) {
            IGerritHudsonTriggerConfig config = getConfig(serverName);
            if (config != null) {
                if (config.isUseRestApi() && event instanceof ChangeBasedEvent) {
                    GerritSendCommandQueue.queue(new BuildStartedRestCommandJob(config, build, listener,
                            (ChangeBasedEvent)event, stats));
                } else {
                    GerritSendCommandQueue.queue(new BuildStartedCommandJob(config, build, listener, event, stats));
                }
            } else {
View Full Code Here

TOP

Related Classes of com.sonyericsson.hudson.plugins.gerrit.trigger.gerritnotifier.job.rest.BuildStartedRestCommandJob

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.