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

io.github.pmckeown.dependencytrack.ResourceConstants Maven / Gradle / Ivy

Go to download

Maven plugin to integrate with a Dependency Track server to submit dependency manifests and gather project metrics.

There is a newer version: 1.7.0
Show newest version
package io.github.pmckeown.dependencytrack;

/**
 * Resource address constants.
 *
 * @author Paul McKeown
 */
public final class ResourceConstants {

    public static final String V1_BOM = "/api/v1/bom";
    public static final String V1_BOM_TOKEN_UUID = "/api/v1/bom/token/{uuid}";
    public static final String V1_PROJECT = "/api/v1/project?limit=1000000&offset=0";
    public static final String V1_PROJECT_UUID = "/api/v1/project/{uuid}";
    public static final String V1_FINDING_PROJECT_UUID = "/api/v1/finding/project/{uuid}";
    public static final String V1_METRICS_PROJECT_UUID_CURRENT = "/api/v1/metrics/project/{uuid}/current";
    public static final String V1_METRICS_PROJECT_UUID_REFRESH = "/api/v1/metrics/project/{uuid}/refresh";

    private ResourceConstants() {
        // Constants file
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy