Package com.applitools.eyes
Class AbstractProxySettings
- java.lang.Object
-
- com.applitools.eyes.AbstractProxySettings
-
- Direct Known Subclasses:
AutProxySettings
public abstract class AbstractProxySettings extends Object
Encapsulates settings for sending Eyes communication via proxy.
-
-
Constructor Summary
Constructors Constructor Description AbstractProxySettings()Defines proxy settings with the url in the environment variableAbstractProxySettings(String uri)Defines proxy settings with empty username/password.AbstractProxySettings(String uri, Integer port)AbstractProxySettings(String uri, Integer port, String username, String password)AbstractProxySettings(String uri, String username, String password)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)StringgetPassword()intgetPort()StringgetUri()StringgetUsername()inthashCode()StringtoString()
-
-
-
Constructor Detail
-
AbstractProxySettings
public AbstractProxySettings(String uri, Integer port, String username, String password)
- Parameters:
uri- The proxy's URI.port- The proxy's portusername- The username to be sent to the proxy.password- The password to be sent to the proxy.
-
AbstractProxySettings
public AbstractProxySettings(String uri, Integer port)
- Parameters:
uri- The proxy's URI.port- The proxy's port
-
AbstractProxySettings
public AbstractProxySettings(String uri, String username, String password)
- Parameters:
uri- The proxy's URI.username- The username to be sent to the proxy.password- The password to be sent to the proxy.
-
AbstractProxySettings
public AbstractProxySettings(String uri)
Defines proxy settings with empty username/password.- Parameters:
uri- The proxy's URI.
-
AbstractProxySettings
public AbstractProxySettings()
Defines proxy settings with the url in the environment variable
-
-