se.bjurr.violations.lib.model.generated.sarif.ReportingConfiguration Maven / Gradle / Ivy
package se.bjurr.violations.lib.model.generated.sarif;
import java.util.HashMap;
import java.util.Map;
/**
* Information about a rule or notification that can be configured at runtime.
*
*/
public class ReportingConfiguration {
/**
* Specifies whether the report may be produced during the scan.
*
*/
private Boolean enabled = true;
/**
* Specifies the failure level for the report.
*
*/
private ReportingConfiguration.Level level = ReportingConfiguration.Level.fromValue("warning");
/**
* Specifies the relative priority of the report. Used for analysis output only.
*
*/
private Double rank = -1.0D;
/**
* Key/value pairs that provide additional information about the object.
*
*/
private PropertyBag parameters;
/**
* Key/value pairs that provide additional information about the object.
*
*/
private PropertyBag properties;
/**
* Specifies whether the report may be produced during the scan.
*
*/
public Boolean getEnabled() {
return enabled;
}
/**
* Specifies whether the report may be produced during the scan.
*
*/
public void setEnabled(Boolean enabled) {
this.enabled = enabled;
}
public ReportingConfiguration withEnabled(Boolean enabled) {
this.enabled = enabled;
return this;
}
/**
* Specifies the failure level for the report.
*
*/
public ReportingConfiguration.Level getLevel() {
return level;
}
/**
* Specifies the failure level for the report.
*
*/
public void setLevel(ReportingConfiguration.Level level) {
this.level = level;
}
public ReportingConfiguration withLevel(ReportingConfiguration.Level level) {
this.level = level;
return this;
}
/**
* Specifies the relative priority of the report. Used for analysis output only.
*
*/
public Double getRank() {
return rank;
}
/**
* Specifies the relative priority of the report. Used for analysis output only.
*
*/
public void setRank(Double rank) {
this.rank = rank;
}
public ReportingConfiguration withRank(Double rank) {
this.rank = rank;
return this;
}
/**
* Key/value pairs that provide additional information about the object.
*
*/
public PropertyBag getParameters() {
return parameters;
}
/**
* Key/value pairs that provide additional information about the object.
*
*/
public void setParameters(PropertyBag parameters) {
this.parameters = parameters;
}
public ReportingConfiguration withParameters(PropertyBag parameters) {
this.parameters = parameters;
return this;
}
/**
* Key/value pairs that provide additional information about the object.
*
*/
public PropertyBag getProperties() {
return properties;
}
/**
* Key/value pairs that provide additional information about the object.
*
*/
public void setProperties(PropertyBag properties) {
this.properties = properties;
}
public ReportingConfiguration withProperties(PropertyBag properties) {
this.properties = properties;
return this;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append(ReportingConfiguration.class.getName()).append('@').append(Integer.toHexString(System.identityHashCode(this))).append('[');
sb.append("enabled");
sb.append('=');
sb.append(((this.enabled == null)?"":this.enabled));
sb.append(',');
sb.append("level");
sb.append('=');
sb.append(((this.level == null)?"":this.level));
sb.append(',');
sb.append("rank");
sb.append('=');
sb.append(((this.rank == null)?"":this.rank));
sb.append(',');
sb.append("parameters");
sb.append('=');
sb.append(((this.parameters == null)?"":this.parameters));
sb.append(',');
sb.append("properties");
sb.append('=');
sb.append(((this.properties == null)?"":this.properties));
sb.append(',');
if (sb.charAt((sb.length()- 1)) == ',') {
sb.setCharAt((sb.length()- 1), ']');
} else {
sb.append(']');
}
return sb.toString();
}
@Override
public int hashCode() {
int result = 1;
result = ((result* 31)+((this.rank == null)? 0 :this.rank.hashCode()));
result = ((result* 31)+((this.level == null)? 0 :this.level.hashCode()));
result = ((result* 31)+((this.parameters == null)? 0 :this.parameters.hashCode()));
result = ((result* 31)+((this.enabled == null)? 0 :this.enabled.hashCode()));
result = ((result* 31)+((this.properties == null)? 0 :this.properties.hashCode()));
return result;
}
@Override
public boolean equals(Object other) {
if (other == this) {
return true;
}
if ((other instanceof ReportingConfiguration) == false) {
return false;
}
ReportingConfiguration rhs = ((ReportingConfiguration) other);
return ((((((this.rank == rhs.rank)||((this.rank!= null)&&this.rank.equals(rhs.rank)))&&((this.level == rhs.level)||((this.level!= null)&&this.level.equals(rhs.level))))&&((this.parameters == rhs.parameters)||((this.parameters!= null)&&this.parameters.equals(rhs.parameters))))&&((this.enabled == rhs.enabled)||((this.enabled!= null)&&this.enabled.equals(rhs.enabled))))&&((this.properties == rhs.properties)||((this.properties!= null)&&this.properties.equals(rhs.properties))));
}
/**
* Specifies the failure level for the report.
*
*/
public enum Level {
NONE("none"),
NOTE("note"),
WARNING("warning"),
ERROR("error");
private final String value;
private final static Map CONSTANTS = new HashMap();
static {
for (ReportingConfiguration.Level c: values()) {
CONSTANTS.put(c.value, c);
}
}
Level(String value) {
this.value = value;
}
@Override
public String toString() {
return this.value;
}
public String value() {
return this.value;
}
public static ReportingConfiguration.Level fromValue(String value) {
ReportingConfiguration.Level constant = CONSTANTS.get(value);
if (constant == null) {
throw new IllegalArgumentException(value);
} else {
return constant;
}
}
}
}