com.github.iamshreeram.plugins.jmeter.slack.SlackActionStyle Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of slack-notifier Show documentation
Show all versions of slack-notifier Show documentation
Jmeter plugin for slack notification
The newest version!
package com.github.iamshreeram.plugins.jmeter.slack;
public enum SlackActionStyle {
DEFAULT("default"), PRIMARY("primary"), DANGER("danger");
private String code;
SlackActionStyle(String code) {
this.code = code;
}
public String getCode() {
return code;
}
}