Constructor and Description |
---|
DockerConfiguration() |
Modifier and Type | Method and Description |
---|---|
DockerConfiguration |
copy() |
String |
getCertPath() |
String |
getCmdExecFactory() |
String |
getEmail() |
String |
getHost() |
Integer |
getMaxPerRouteConnections() |
Integer |
getMaxTotalConnections() |
DockerOperation |
getOperation() |
Map<String,Object> |
getParameters() |
String |
getPassword() |
Integer |
getPort() |
Integer |
getRequestTimeout() |
String |
getServerAddress() |
String |
getUsername() |
boolean |
isFollowRedirectFilterEnabled() |
boolean |
isLoggingFilterEnabled() |
boolean |
isSecure() |
boolean |
isSocket() |
boolean |
isTlsVerify() |
void |
setCertPath(String certPath)
Location containing the SSL certificate chain
|
void |
setCmdExecFactory(String cmdExecFactory)
The fully qualified class name of the DockerCmdExecFactory implementation to use
|
void |
setEmail(String email)
Email address associated with the user
|
void |
setFollowRedirectFilter(boolean followRedirectFilterEnabled)
Whether to follow redirect filter
|
void |
setHost(String host)
Docker host
|
void |
setLoggingFilter(boolean loggingFilterEnabled)
Whether to use logging filter
|
void |
setMaxPerRouteConnections(Integer maxPerRouteConnections)
Maximum route connections
|
void |
setMaxTotalConnections(Integer maxTotalConnections)
Maximum total connections
|
void |
setOperation(DockerOperation operation)
Which operation to use
|
void |
setParameters(Map<String,Object> parameters)
Additional configuration parameters as key/value pairs
|
void |
setPassword(String password)
Password to authenticate with
|
void |
setPort(Integer port)
Docker port
|
void |
setRequestTimeout(Integer requestTimeout)
Request timeout for response (in seconds)
|
void |
setSecure(boolean secure)
Use HTTPS communication
|
void |
setServerAddress(String serverAddress)
Server address for docker registry.
|
void |
setSocket(boolean socket)
Socket connection mode
|
void |
setTlsVerify(boolean tlsVerify)
Check TLS
|
void |
setUsername(String username)
User name to authenticate with
|
public String getHost()
public void setHost(String host)
public Integer getPort()
public void setPort(Integer port)
public String getUsername()
public void setUsername(String username)
public String getPassword()
public void setPassword(String password)
public String getEmail()
public void setEmail(String email)
public String getServerAddress()
public void setServerAddress(String serverAddress)
public Integer getRequestTimeout()
public void setRequestTimeout(Integer requestTimeout)
public boolean isSecure()
public void setSecure(boolean secure)
public String getCertPath()
public void setCertPath(String certPath)
public Integer getMaxTotalConnections()
public void setMaxTotalConnections(Integer maxTotalConnections)
public Integer getMaxPerRouteConnections()
public void setMaxPerRouteConnections(Integer maxPerRouteConnections)
public boolean isLoggingFilterEnabled()
public void setLoggingFilter(boolean loggingFilterEnabled)
public boolean isFollowRedirectFilterEnabled()
public void setFollowRedirectFilter(boolean followRedirectFilterEnabled)
public void setParameters(Map<String,Object> parameters)
public DockerOperation getOperation()
public void setOperation(DockerOperation operation)
public boolean isTlsVerify()
public void setTlsVerify(boolean tlsVerify)
public boolean isSocket()
public void setSocket(boolean socket)
public String getCmdExecFactory()
public void setCmdExecFactory(String cmdExecFactory)
public DockerConfiguration copy()
Apache Camel