Package de.xima.fc.workflow.model.nodes
Class FcHttpRequestProps.ProxyProps
- java.lang.Object
- 
- de.xima.fc.workflow.model.nodes.FcHttpRequestProps.ProxyProps
 
- 
- All Implemented Interfaces:
- Serializable
 - Enclosing class:
- FcHttpRequestProps
 
 @NotNullIf(field="proxyAuthProps", dependants="useProxyAuth", target=ProxyProps.class) public static class FcHttpRequestProps.ProxyProps extends Object implements SerializablePOJO model class for the proxy configuration of the HTTP request action.- Since:
- 7.0.0
- Author:
- XIMA MEDIA GmbH
- See Also:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description ProxyProps()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description FcHttpRequestProps.ProxyAuthPropsgetProxyAuthProps()StringgetProxyHost()intgetProxyPort()booleanisShowProxyAuthProps()booleanisUseProxyAuth()voidsetProxyAuthProps(FcHttpRequestProps.ProxyAuthProps proxyAuthProps)voidsetProxyHost(String proxyHost)voidsetProxyPort(int proxyPort)voidsetUseProxyAuth(boolean useProxyAuth)
 
- 
- 
- 
Method Detail- 
getProxyAuthPropspublic FcHttpRequestProps.ProxyAuthProps getProxyAuthProps() - Returns:
- Settings for authenticating against the proxy, see isUseProxyAuth().
 
 - 
setProxyAuthPropspublic void setProxyAuthProps(FcHttpRequestProps.ProxyAuthProps proxyAuthProps) - Parameters:
- proxyAuthProps- Settings for authenticating against the proxy, see- isUseProxyAuth().
 
 - 
getProxyHostpublic String getProxyHost() - Returns:
- Host name of the proxy.
 
 - 
setProxyHostpublic void setProxyHost(String proxyHost) - Parameters:
- proxyHost- Host name of the proxy.
 
 - 
getProxyPortpublic int getProxyPort() - Returns:
- Port number of the proxy.
 
 - 
setProxyPortpublic void setProxyPort(int proxyPort) - Parameters:
- proxyPort- Port number of the proxy.
 
 - 
isShowProxyAuthPropspublic boolean isShowProxyAuthProps() - Returns:
- Whether the user can configure the proxy authentication settings in the UI.
 
 - 
isUseProxyAuthpublic boolean isUseProxyAuth() - Returns:
- Whether the proxy required authentication via a username and password.
 
 - 
setUseProxyAuthpublic void setUseProxyAuth(boolean useProxyAuth) - Parameters:
- useProxyAuth- Whether the proxy required authentication via a username and password.
 
 
- 
 
-