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

com.iyzipay.Options Maven / Gradle / Ivy

package com.iyzipay ;

public class Options {

    private String apiKey;
    private String secretKey;
    private String baseUrl;
    private String proxyHost;
    private int proxyPort;

    public String getApiKey() {
        return apiKey;
    }

    public void setApiKey(String apiKey) {
        this.apiKey = apiKey;
    }

    public String getProxyHost() {
        return proxyHost;
    }

    /**
     * The http client will use a proxy when not blank (null or empty).
     *
     * @param proxyHost the hostname of the proxy.
     */
    public void setProxyHost(String proxyHost) {
        this.proxyHost = proxyHost;
    }

    public int getProxyPort() {
        return proxyPort;
    }

    /**
     * The http client will use this port to connect to the proxy.
     *
     * @param proxyPort the hostname of the proxy.
     */
    public void setProxyPort(int proxyPort) {
        this.proxyPort = proxyPort;
    }

    public String getSecretKey() {
        return secretKey;
    }

    public void setSecretKey(String secretKey) {
        this.secretKey = secretKey;
    }

    public String getBaseUrl() {
        return baseUrl;
    }

    public void setBaseUrl(String baseUrl) {
        this.baseUrl = baseUrl;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy