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

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


        String serverName = getServerName(memoryImprint);
        if (serverName != null) {
            IGerritHudsonTriggerConfig config = getConfig(serverName);
            if (config != null) {
                if (config.isUseRestApi()) {
                    GerritSendCommandQueue.queue(new BuildCompletedRestCommandJob(config, memoryImprint, listener));
                } else {
                    GerritSendCommandQueue.queue(new BuildCompletedCommandJob(config, memoryImprint, listener));
                }
            } else {
                logger.warn("Nothing queued since there is no configuration for serverName: {}", serverName);
View Full Code Here

TOP

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

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.