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-java3-jboss Show documentation
Show all versions of eyes-connectivity-java3-jboss Show documentation
Applitools Eyes SDK REST API communication implementation based on JBoss RestEasy
package com.applitools.eyes;
public class ProxySettings extends AbstractProxySettings {
public ProxySettings(String uri, int port, String username, String password) {
super(uri, port, username, password);
}
public ProxySettings(String uri, int port) {
super(uri, port);
}
public ProxySettings(String uri, String username, String password) {
super(uri, username, password);
}
public ProxySettings(String uri) {
super(uri);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy