public class SslConfiguration
extends java.lang.Object
implements java.io.Serializable
Describes an app's SSL configuration.
| コンストラクタと説明 |
|---|
SslConfiguration() |
| 修飾子とタイプ | メソッドと説明 |
|---|---|
boolean |
equals(java.lang.Object obj) |
java.lang.String |
getCertificate()
The contents of the certificate's domain.crt file.
|
java.lang.String |
getChain()
Optional.
|
java.lang.String |
getPrivateKey()
The private key; the contents of the certificate's domain.kex file.
|
int |
hashCode() |
void |
setCertificate(java.lang.String certificate)
The contents of the certificate's domain.crt file.
|
void |
setChain(java.lang.String chain)
Optional.
|
void |
setPrivateKey(java.lang.String privateKey)
The private key; the contents of the certificate's domain.kex file.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
SslConfiguration |
withCertificate(java.lang.String certificate)
The contents of the certificate's domain.crt file.
|
SslConfiguration |
withChain(java.lang.String chain)
Optional.
|
SslConfiguration |
withPrivateKey(java.lang.String privateKey)
The private key; the contents of the certificate's domain.kex file.
|
public java.lang.String getCertificate()
public void setCertificate(java.lang.String certificate)
certificate - The contents of the certificate's domain.crt file.public SslConfiguration withCertificate(java.lang.String certificate)
Returns a reference to this object so that method calls can be chained together.
certificate - The contents of the certificate's domain.crt file.public java.lang.String getPrivateKey()
public void setPrivateKey(java.lang.String privateKey)
privateKey - The private key; the contents of the certificate's domain.kex file.public SslConfiguration withPrivateKey(java.lang.String privateKey)
Returns a reference to this object so that method calls can be chained together.
privateKey - The private key; the contents of the certificate's domain.kex file.public java.lang.String getChain()
public void setChain(java.lang.String chain)
chain - Optional. Can be used to specify an intermediate certificate authority
key or client authentication.public SslConfiguration withChain(java.lang.String chain)
Returns a reference to this object so that method calls can be chained together.
chain - Optional. Can be used to specify an intermediate certificate authority
key or client authentication.public java.lang.String toString()
toString クラス内 java.lang.ObjectObject.toString()public int hashCode()
hashCode クラス内 java.lang.Objectpublic boolean equals(java.lang.Object obj)
equals クラス内 java.lang.Object