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

com.backbase.oss.boat.quay.model.BoatLintRule Maven / Gradle / Ivy

There is a newer version: 0.17.37
Show newest version
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