Package hudson.tasks.mail.impl

Examples of hudson.tasks.mail.impl.UnstableBuildMail


                getMail(build, listener);
        }

        if (build.getResult() == Result.UNSTABLE) {
            if (!dontNotifyEveryUnstableBuild)
                return new UnstableBuildMail(getRecipients(), sendToIndividuals, upstreamProjects, getCharset()).
                    getMail(build, listener);
            Result prev = findPreviousBuildResult(build);
            if (prev == Result.SUCCESS)
                return new UnstableBuildMail(getRecipients(), sendToIndividuals, upstreamProjects, getCharset()).
                    getMail(build, listener);
        }

        if (build.getResult() == Result.SUCCESS) {
            Result prev = findPreviousBuildResult(build);
View Full Code Here

TOP

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

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.