com.seleniumtests.core.proxy.ProxyConfig Maven / Gradle / Ivy
/**
* Orignal work: Copyright 2015 www.seleniumtests.com
* Modified work: Copyright 2016 www.infotel.com
* Copyright 2017-2019 B.Hecquet
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.seleniumtests.core.proxy;
import org.openqa.selenium.Proxy.ProxyType;
public class ProxyConfig {
private ProxyType type;
private String address;
private Integer port;
private String login;
private String password;
private String exclude;
private String pac;
public ProxyType getType() {
return type;
}
public void setType(ProxyType type) {
this.type = type;
}
public String getAddress() {
return address;
}
public void setAddress(String address) {
this.address = address;
}
public Integer getPort() {
return port;
}
public void setPort(Integer port) {
this.port = port;
}
public String getLogin() {
return login;
}
public void setLogin(String login) {
this.login = login;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public String getExclude() {
return exclude;
}
public void setExclude(String exclude) {
this.exclude = exclude;
}
public String getPac() {
return pac;
}
public void setPac(String pac) {
this.pac = pac;
}
public String getAddressAndPort() {
return String.format("%s:%s", address, port);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy