Package com.mendix.http
Interface IProxyConfiguration
-
public interface IProxyConfiguration
Specifies proxy configuration.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getHost()
Gets the proxy host.java.util.Optional<java.lang.String>
getPassword()
Gets the proxy password.int
getPort()
Gets the proxy port.java.util.Optional<java.lang.String>
getUser()
Gets the proxy user.
-
-
-
Method Detail
-
getHost
java.lang.String getHost()
Gets the proxy host.- Returns:
- the proxy host
-
getPort
int getPort()
Gets the proxy port.- Returns:
- the proxy port
-
getUser
java.util.Optional<java.lang.String> getUser()
Gets the proxy user.- Returns:
- the proxy user, or empty when the proxy server does not require authentication
-
getPassword
java.util.Optional<java.lang.String> getPassword()
Gets the proxy password.- Returns:
- the proxy password, or empty when the proxy server does not require authentication
-
-