com.applitools.eyes.ProxySettings Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eyes-connectivity-java5-jersey2x Show documentation
Show all versions of eyes-connectivity-java5-jersey2x Show documentation
Applitools Eyes SDK REST API communication implementation depending on Jersey version 2x
package com.applitools.eyes;
public class ProxySettings extends AbstractProxySettings {
public ProxySettings(String uri, int port, String username, String password) {
super(uri + ":" + port, port, username, password);
}
public ProxySettings(String uri, int port) {
super(uri + ":" + port, null, null);
}
public ProxySettings(String uri, String username, String password) {
super(uri, username, password);
}
public ProxySettings(String uri) {
super(uri);
}
public ProxySettings() {
super();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy