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

com.sportradar.mts.sdk.api.enums.UfEnvironment Maven / Gradle / Ivy

/*
 * Copyright (C) Sportradar AG. See LICENSE for full license governing this code
 */

package com.sportradar.mts.sdk.api.enums;

public enum UfEnvironment {
    /**
     * Integration
     */
    INTEGRATION("https://global.stgapi.betradar.com"),

    /**
     * Production
     */
    PRODUCTION("https://global.api.betradar.com");

    private final String host;

    UfEnvironment(String host) {
        this.host = host;
    }

    public String getHost() {
        return host;
    }

    public static UfEnvironment fromString(String name) {
        return UfEnvironment.valueOf(name.toUpperCase());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy