com.atlassian.bamboo.specs.builders.notification.JobFailedNotification Maven / Gradle / Ivy
package com.atlassian.bamboo.specs.builders.notification;
import com.atlassian.bamboo.specs.api.builders.Applicability;
import com.atlassian.bamboo.specs.api.builders.notification.NotificationType;
import com.atlassian.bamboo.specs.api.model.AtlassianModuleProperties;
import com.atlassian.bamboo.specs.api.model.notification.AnyNotificationTypeProperties;
import org.jetbrains.annotations.NotNull;
import java.util.EnumSet;
/**
* Defines notification which is sent for every job that failed and the first run which fixes it.
*/
public class JobFailedNotification extends NotificationType {
private static final AtlassianModuleProperties ATLASSIAN_PLUGIN =
new AtlassianModuleProperties("com.atlassian.bamboo.plugin.system.notifications:buildCompleted.failedBuilds");
@NotNull
@Override
protected AnyNotificationTypeProperties build() {
return new AnyNotificationTypeProperties(ATLASSIAN_PLUGIN, "", EnumSet.of(Applicability.PLANS));
}
}