com.backbase.oss.boat.quay.model.BoatLintRule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of boat-quay-lint Show documentation
Show all versions of boat-quay-lint Show documentation
Backbase Open Api Tools QUAlitY module
package com.backbase.oss.boat.quay.model;
import java.net.URI;
import lombok.Data;
import org.zalando.zally.rule.api.Severity;
@Data
public class BoatLintRule {
public enum Type {
BUG, CODE_SMELL, VULNERABILITY, SECURITY_HOTSPOT
}
private String id;
private String ruleSet;
private String title;
private Severity severity;
private boolean ignored;
private URI url;
private Long effortMinutes;
private Type type;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy