package com.seewo.vcommons.utils.clone;

/* JADX INFO: loaded from: classes.dex */
public class ProxySettingsConfig {
    private String mProxyExclusionList;
    private String mProxyHostName;
    private String mProxyPac;
    private int mProxyPort;
    private String mProxySettings;

    public enum ProxySettings {
        NONE,
        STATIC,
        PAC
    }

    public ProxySettingsConfig(String str) {
        this.mProxySettings = str;
    }

    public String getProxySettings() {
        return this.mProxySettings;
    }

    public void setProxySettings(String str) {
        this.mProxySettings = str;
    }

    public String getProxyHostName() {
        return this.mProxyHostName;
    }

    public void setProxyHostName(String str) {
        this.mProxyHostName = str;
    }

    public int getProxyPort() {
        return this.mProxyPort;
    }

    public void setProxyPort(int i) {
        this.mProxyPort = i;
    }

    public String getProxyExclusionList() {
        return this.mProxyExclusionList;
    }

    public void setProxyExclusionList(String str) {
        this.mProxyExclusionList = str;
    }

    public String getProxyPac() {
        return this.mProxyPac;
    }

    public void setProxyPac(String str) {
        this.mProxyPac = str;
    }
}
