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

cn.payingcloud.umf.UmfProfile Maven / Gradle / Ivy

There is a newer version: 1.0.8
Show newest version
package cn.payingcloud.umf;

public enum UmfProfile {
    ASIA_TEST("https://uatfx.soopay.net/cberest/v1"),
    ASIA_PROD("https://fx.soopay.net/cberest/v1"),
    US_TEST("https://uatfx-us.soopay.net/cberest/v1"),
    US_PROD("https://fxus.soopay.net/cberest/v1");

    private final String url;

    UmfProfile(String url) {
        this.url = url;
    }

    public String getUrl() {
        return url;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy