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

com.wgtwo.api.common.Environment Maven / Gradle / Ivy

The newest version!
package com.wgtwo.api.common;

public enum Environment {
    SANDBOX("sandbox.api.wgtwo.com", 443),
    PRODUCTION("api.wgtwo.com", 443);

    public final String host;
    public final int port;
    public final String target;

    Environment(String host, int port) {
        this.host = host;
        this.port = port;
        this.target = host + ":" + port;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy