All Downloads are FREE. Search and download functionalities are using the official Maven repository.

hudson.tasks.MailMessageIdAction Maven / Gradle / Ivy

package hudson.tasks;

import hudson.model.Action;

/**
 * Remembers the message ID of the e-mail that was sent for the build.
 *
 * 

* This allows us to send further updates as replies. * * @author Kohsuke Kawaguchi */ public class MailMessageIdAction implements Action { /** * Message ID of the e-mail sent for the build. */ public final String messageId; public MailMessageIdAction(String messageId) { this.messageId = messageId; } public String getIconFileName() { return null; } public String getDisplayName() { return "Message Id"; // but this is never supposed to be displayed } public String getUrlName() { return null; // no web binding } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy