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

com.atlassian.bamboo.specs.api.model.pbc.AtlassianModulePBC Maven / Gradle / Ivy

The newest version!
package com.atlassian.bamboo.specs.api.model.pbc;

import com.atlassian.bamboo.specs.api.builders.AtlassianModule;

public enum AtlassianModulePBC {
    ENVIRONMENT("com.atlassian.buildeng.bamboo-isolated-docker-plugin:pbcEnvironment"),
    JOB("com.atlassian.buildeng.bamboo-isolated-docker-plugin:agentSafeguard");
    private final String moduleKey;

    AtlassianModulePBC(String moduleKey) {
        this.moduleKey = moduleKey;
    }

    public AtlassianModule module() {
        return new AtlassianModule(moduleKey);
    }

    public String moduleKey() {
        return moduleKey;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy