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

org.jfrog.hudson.Notifications Maven / Gradle / Ivy

The newest version!
package org.jfrog.hudson;

import org.kohsuke.stapler.DataBoundConstructor;

/**
 * Represents a holder object for notifications, right now only holds recipients for violations.
 *
 * @author Tomer Cohen
 */
public class Notifications {
    private String violationRecipients;

    @DataBoundConstructor
    public Notifications(String violationRecipients) {
        this.violationRecipients = violationRecipients;
    }

    public String getViolationRecipients() {
        return violationRecipients;
    }

    public void setViolationRecipients(String violationRecipients) {
        this.violationRecipients = violationRecipients;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy