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

com.payermax.sdk.enums.Env Maven / Gradle / Ivy

package com.payermax.sdk.enums;

/**
 * @author zhanglong at 2022/4/4 11:05
 **/
public enum Env {

    /**
     * uat test env
     */
    UAT("https://pay-gate-uat.payermax.com/aggregate-pay/api/gateway"),

    /**
     * live env
     */
    PROD("https://pay-gate.payermax.com/aggregate-pay/api/gateway");

    private String url;

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

    public String getUrl() {
        return url;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy