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

com.contrastsecurity.http.ServerEnvironment Maven / Gradle / Ivy

There is a newer version: 3.4.2
Show newest version
package com.contrastsecurity.http;

import lombok.Getter;

public enum ServerEnvironment {

    DEVELOPMENT("Development"),
    QA("QA"),
    PRODUCTION("Production");

    @Getter
    private String label;

    ServerEnvironment(String label) {
        this.label = label;
    }

    @Override
    public String toString() {
        return this.label.toLowerCase();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy