org.apache.qpid.transport
Class ConnectionSettings
java.lang.Object
org.apache.qpid.transport.ConnectionSettings
public class ConnectionSettings
- extends Object
A ConnectionSettings object can only be associated with
one Connection object. I have added an assertion that will
throw an exception if it is used by more than on Connection
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
protocol
String protocol
host
String host
vhost
String vhost
username
String username
password
String password
port
int port
tcpNodelay
boolean tcpNodelay
maxChannelCount
int maxChannelCount
maxFrameSize
int maxFrameSize
heartbeatInterval
int heartbeatInterval
readBufferSize
int readBufferSize
writeBufferSize
int writeBufferSize
transportTimeout
long transportTimeout
useSSL
boolean useSSL
keyStorePath
String keyStorePath
keyStorePassword
String keyStorePassword
keyStoreCertType
String keyStoreCertType
trustStoreCertType
String trustStoreCertType
trustStorePath
String trustStorePath
trustStorePassword
String trustStorePassword
certAlias
String certAlias
verifyHostname
boolean verifyHostname
saslMechs
String saslMechs
saslProtocol
String saslProtocol
saslServerName
String saslServerName
useSASLEncryption
boolean useSASLEncryption
ConnectionSettings
public ConnectionSettings()
isTcpNodelay
public boolean isTcpNodelay()
setTcpNodelay
public void setTcpNodelay(boolean tcpNodelay)
getHeartbeatInterval
public int getHeartbeatInterval()
setHeartbeatInterval
public void setHeartbeatInterval(int heartbeatInterval)
getProtocol
public String getProtocol()
setProtocol
public void setProtocol(String protocol)
getHost
public String getHost()
setHost
public void setHost(String host)
getPort
public int getPort()
setPort
public void setPort(int port)
getVhost
public String getVhost()
setVhost
public void setVhost(String vhost)
getUsername
public String getUsername()
setUsername
public void setUsername(String username)
getPassword
public String getPassword()
setPassword
public void setPassword(String password)
isUseSSL
public boolean isUseSSL()
setUseSSL
public void setUseSSL(boolean useSSL)
isUseSASLEncryption
public boolean isUseSASLEncryption()
setUseSASLEncryption
public void setUseSASLEncryption(boolean useSASLEncryption)
getSaslMechs
public String getSaslMechs()
setSaslMechs
public void setSaslMechs(String saslMechs)
getSaslProtocol
public String getSaslProtocol()
setSaslProtocol
public void setSaslProtocol(String saslProtocol)
getSaslServerName
public String getSaslServerName()
setSaslServerName
public void setSaslServerName(String saslServerName)
getMaxChannelCount
public int getMaxChannelCount()
setMaxChannelCount
public void setMaxChannelCount(int maxChannelCount)
getMaxFrameSize
public int getMaxFrameSize()
setMaxFrameSize
public void setMaxFrameSize(int maxFrameSize)
setClientProperties
public void setClientProperties(Map<String,Object> clientProperties)
getClientProperties
public Map<String,Object> getClientProperties()
getKeyStorePath
public String getKeyStorePath()
setKeyStorePath
public void setKeyStorePath(String keyStorePath)
getKeyStorePassword
public String getKeyStorePassword()
setKeyStorePassword
public void setKeyStorePassword(String keyStorePassword)
getTrustStorePath
public String getTrustStorePath()
setTrustStorePath
public void setTrustStorePath(String trustStorePath)
getTrustStorePassword
public String getTrustStorePassword()
setTrustStorePassword
public void setTrustStorePassword(String trustStorePassword)
getCertAlias
public String getCertAlias()
setCertAlias
public void setCertAlias(String certAlias)
isVerifyHostname
public boolean isVerifyHostname()
setVerifyHostname
public void setVerifyHostname(boolean verifyHostname)
getKeyStoreCertType
public String getKeyStoreCertType()
setKeyStoreCertType
public void setKeyStoreCertType(String keyStoreCertType)
getTrustStoreCertType
public String getTrustStoreCertType()
setTrustStoreCertType
public void setTrustStoreCertType(String trustStoreCertType)
getReadBufferSize
public int getReadBufferSize()
setReadBufferSize
public void setReadBufferSize(int readBufferSize)
getWriteBufferSize
public int getWriteBufferSize()
setWriteBufferSize
public void setWriteBufferSize(int writeBufferSize)
getTransportTimeout
public long getTransportTimeout()
setTransportTimeout
public void setTransportTimeout(long transportTimeout)
Licensed to the Apache Software Foundation