Package org.apache.pinot.common.config
Class TlsConfig
- java.lang.Object
-
- org.apache.pinot.common.config.TlsConfig
-
public class TlsConfig extends Object
Container object for TLS/SSL configuration of pinot clients and servers (netty, grizzly, etc.)
-
-
Method Summary
Modifier and Type Method Description StringgetKeyStorePassword()StringgetKeyStorePath()StringgetKeyStoreType()StringgetSslProvider()StringgetTrustStorePassword()StringgetTrustStorePath()StringgetTrustStoreType()booleanisClientAuthEnabled()booleanisCustomized()voidsetClientAuthEnabled(boolean clientAuthEnabled)voidsetKeyStorePassword(String keyStorePassword)voidsetKeyStorePath(String keyStorePath)voidsetKeyStoreType(String keyStoreType)voidsetSslProvider(String sslProvider)voidsetTrustStorePassword(String trustStorePassword)voidsetTrustStorePath(String trustStorePath)voidsetTrustStoreType(String trustStoreType)
-
-
-
Constructor Detail
-
TlsConfig
public TlsConfig()
-
TlsConfig
public TlsConfig(TlsConfig tlsConfig)
-
-
Method Detail
-
isClientAuthEnabled
public boolean isClientAuthEnabled()
-
setClientAuthEnabled
public void setClientAuthEnabled(boolean clientAuthEnabled)
-
getKeyStoreType
public String getKeyStoreType()
-
setKeyStoreType
public void setKeyStoreType(String keyStoreType)
-
getKeyStorePath
public String getKeyStorePath()
-
setKeyStorePath
public void setKeyStorePath(String keyStorePath)
-
getKeyStorePassword
public String getKeyStorePassword()
-
setKeyStorePassword
public void setKeyStorePassword(String keyStorePassword)
-
getTrustStoreType
public String getTrustStoreType()
-
setTrustStoreType
public void setTrustStoreType(String trustStoreType)
-
getTrustStorePath
public String getTrustStorePath()
-
setTrustStorePath
public void setTrustStorePath(String trustStorePath)
-
getTrustStorePassword
public String getTrustStorePassword()
-
setTrustStorePassword
public void setTrustStorePassword(String trustStorePassword)
-
getSslProvider
public String getSslProvider()
-
setSslProvider
public void setSslProvider(String sslProvider)
-
isCustomized
public boolean isCustomized()
-
-