导航菜单

页面标题

页面副标题

Credmex v3.12.2 - OpCountry.java 源代码

正在查看: Credmex v3.12.2 应用的 OpCountry.java JAVA 源代码文件

本页面展示 JAVA 反编译生成的源代码文件,支持语法高亮显示。 仅供安全研究与技术分析使用,严禁用于任何非法用途。请遵守相关法律法规。


package mx.openpay.android;

public enum OpCountry {
    MX("https://sandbox-api.openpay.mx", "https://api.openpay.mx"),
    COL("https://sandbox-api.openpay.co", "https://api.openpay.co"),
    PE("https://sandbox-api.openpay.pe", "https://api.openpay.pe");

    private final String urlProduction;
    private final String urlSandbox;

    OpCountry(String str, String str2) {
        this.urlSandbox = str;
        this.urlProduction = str2;
    }

    protected String getUrlProduction() {
        return this.urlProduction;
    }

    protected String getUrlSandbox() {
        return this.urlSandbox;
    }
}