Package hudson.tasks.mail.impl

Examples of hudson.tasks.mail.impl.BackToNormalBuildMail


        }

        if (build.getResult() == Result.SUCCESS) {
            Result prev = findPreviousBuildResult(build);
            if (prev == Result.FAILURE)
                return new BackToNormalBuildMail(getRecipients(), sendToIndividuals, upstreamProjects, getCharset(),
                    Messages.MailSender_BackToNormal_Normal()).getMail(build, listener);
            if (prev == Result.UNSTABLE)
                return new BackToNormalBuildMail(getRecipients(), sendToIndividuals, upstreamProjects, getCharset(),
                    Messages.MailSender_BackToNormal_Stable()).getMail(build, listener);
        }

        return null;
    }
View Full Code Here

TOP

Related Classes of hudson.tasks.mail.impl.BackToNormalBuildMail

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.