Package hudson.tasks.mail.impl

Examples of hudson.tasks.mail.impl.FailureBuildMail


        return b.getResult();
    }

    protected MimeMessage getMail(AbstractBuild<?, ?> build, BuildListener listener) throws MessagingException, InterruptedException {
        if (build.getResult() == Result.FAILURE) {
            return new FailureBuildMail(getRecipients(), sendToIndividuals, upstreamProjects, getCharset()).
                getMail(build, listener);
        }

        if (build.getResult() == Result.UNSTABLE) {
            if (!dontNotifyEveryUnstableBuild)
View Full Code Here

TOP

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

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.