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-java4-jersey1x Show documentation
Show all versions of eyes-connectivity-java4-jersey1x Show documentation
Applitools Eyes SDK REST API communication implementation depending on Jersey version 1x
package com.applitools.eyes;
public class ProxySettings extends AbstractProxySettings {
/**
*
* @param uri Uri should start without the scheme
* @param port
*/
public ProxySettings(String uri, int port, String username, String password) {
super(uri, port, username, password);
}
/**
*
* @param uri Uri should start without the scheme
* @param port
*/
public ProxySettings(String uri, int port) {
super(uri, port, "" , "");
}
/**
*
* @param uri Uri should start without the scheme
*/
public ProxySettings(String uri, String username, String password) {
super(uri, username, password);
}
/**
*
* @param uri Uri should start without the scheme
*/
public ProxySettings(String uri) {
super(uri,"","");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy