Class ProxyServerConfig
- java.lang.Object
-
- com.adobe.pdfservices.operation.config.proxy.ProxyServerConfig
-
public class ProxyServerConfig extends Object
Encapsulates the proxy server configurations.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ProxyServerConfig.Builder
Builds aProxyServerConfig
instance.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ProxyServerConfig.Builder
builder()
Creates a newProxyServerConfig
builder.ProxyAuthenticationCredentials
getCredentials()
Gets the credentials for authenticating with a proxy server.String
getHost()
Gets the host name of proxy server.Integer
getPort()
Gets the port number of proxy server.ProxyScheme
getProxyScheme()
Gets the scheme of proxy server.
-
-
-
Method Detail
-
builder
public static ProxyServerConfig.Builder builder()
Creates a newProxyServerConfig
builder.- Returns:
- a
ProxyServerConfig.Builder
instance
-
getHost
public String getHost()
Gets the host name of proxy server.- Returns:
- A String denoting host
-
getPort
public Integer getPort()
Gets the port number of proxy server.- Returns:
- A String denoting port
-
getProxyScheme
public ProxyScheme getProxyScheme()
Gets the scheme of proxy server.- Returns:
- An instance
ProxyScheme
-
getCredentials
public ProxyAuthenticationCredentials getCredentials()
Gets the credentials for authenticating with a proxy server.- Returns:
- An instance
ProxyAuthenticationCredentials
-
-