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

org.testobject.api.ProxySettings Maven / Gradle / Ivy

There is a newer version: 0.3.1
Show newest version
package org.testobject.api;

public final class ProxySettings {

	private final String host;
	private final int port;
	private final String username;
	private final String password;

	public ProxySettings(String host, int port, String username, String password) {
		this.host = host;
		this.port = port;
		this.username = username;
		this.password = password;
	}

	public String getHost() {
		return host;
	}

	public int getPort() {
		return port;
	}

	public String getUsername() {
		return username;
	}

	public String getPassword() {
		return password;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy