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

com.applitools.eyes.ProxySettings Maven / Gradle / Ivy

There is a newer version: 4.14.0
Show newest version
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