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

com.sgoertzen.sonarbreak.qualitygate.Query Maven / Gradle / Ivy

There is a newer version: 1.2.5
Show newest version
package com.sgoertzen.sonarbreak.qualitygate;

/**
 * A query to check the quality gate status for a resource in sonar
 */
public class Query {

    private String resource;
    private String version;

    public Query(String resource, String version){
        setResource(resource);
        setVersion(version);
    }

    public String getResource() {
        return resource;
    }

    public void setResource(String resource) {
        this.resource = resource;
    }

    public String getVersion() {
        return version;
    }

    public void setVersion(String version) {
        this.version = version;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy