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

xyz.my_app.libs.service.Environment Maven / Gradle / Ivy

There is a newer version: 0.0.15
Show newest version
package xyz.my_app.libs.service;

public enum Environment {
    DEV(""), AUTOMATION_TEST("test."), UAT("uat."), PROD("prod."), INTEGRATION_TEST("");

    private final String uriPrefix;

    Environment(String uriPrefix)
    {
        this.uriPrefix = uriPrefix;
    }

    public String getURIPrefix()
    {
        return uriPrefix;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy