Package de.xima.fc.workflow.model.nodes
Class FcHttpRequestProps.ProxyAuthProps
- java.lang.Object
-
- de.xima.fc.workflow.model.nodes.FcHttpRequestProps.ProxyAuthProps
-
- All Implemented Interfaces:
Serializable
- Enclosing class:
- FcHttpRequestProps
public static class FcHttpRequestProps.ProxyAuthProps extends Object implements Serializable
POJO model class for the credentials to use with the proxy of the HTTP request action (applicable only when a proxy is used).- Since:
- 7.0.0
- Author:
- XIMA MEDIA GmbH
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ProxyAuthProps()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getProxyAuthLogin()
String
getProxyAuthPwd()
void
setProxyAuthLogin(String proxyAuthLogin)
void
setProxyAuthPwd(String proxyAuthPwd)
-
-
-
Method Detail
-
getProxyAuthLogin
public String getProxyAuthLogin()
- Returns:
- Username for the proxy server.
-
getProxyAuthPwd
public String getProxyAuthPwd()
- Returns:
- Password for the proxy server.
-
setProxyAuthLogin
public void setProxyAuthLogin(String proxyAuthLogin)
- Parameters:
proxyAuthLogin
- Username for the proxy server.
-
setProxyAuthPwd
public void setProxyAuthPwd(String proxyAuthPwd)
- Parameters:
proxyAuthPwd
- Password for the proxy server.
-
-