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 classProxyServerConfig.BuilderBuilds aProxyServerConfiginstance.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ProxyServerConfig.Builderbuilder()Creates a newProxyServerConfigbuilder.ProxyAuthenticationCredentialsgetCredentials()Gets the credentials for authenticating with a proxy server.StringgetHost()Gets the host name of proxy server.IntegergetPort()Gets the port number of proxy server.ProxySchemegetProxyScheme()Gets the scheme of proxy server.
-
-
-
Method Detail
-
builder
public static ProxyServerConfig.Builder builder()
Creates a newProxyServerConfigbuilder.- Returns:
- a
ProxyServerConfig.Builderinstance
-
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
-
-