TlsServerCredentials.Builder |
TlsServerCredentials.Builder.clientAuth(TlsServerCredentials.ClientAuth clientAuth) |
Indicates whether the server should expect a client's identity.
|
TlsServerCredentials.Builder |
TlsServerCredentials.Builder.keyManager(File certChain,
File privateKey) |
Use the provided certificate chain and private key as the server's identity.
|
TlsServerCredentials.Builder |
TlsServerCredentials.Builder.keyManager(File certChain,
File privateKey,
String privateKeyPassword) |
Use the provided certificate chain and possibly-encrypted private key as the server's
identity.
|
TlsServerCredentials.Builder |
TlsServerCredentials.Builder.keyManager(InputStream certChain,
InputStream privateKey) |
Use the provided certificate chain and private key as the server's identity.
|
TlsServerCredentials.Builder |
TlsServerCredentials.Builder.keyManager(InputStream certChain,
InputStream privateKey,
String privateKeyPassword) |
Use the provided certificate chain and possibly-encrypted private key as the server's
identity.
|
TlsServerCredentials.Builder |
TlsServerCredentials.Builder.keyManager(KeyManager... keyManagers) |
Have the provided key manager select the server's identity.
|
static TlsServerCredentials.Builder |
TlsServerCredentials.newBuilder() |
Creates a builder for changing default configuration.
|
TlsServerCredentials.Builder |
TlsServerCredentials.Builder.requireFakeFeature() |
|
TlsServerCredentials.Builder |
TlsServerCredentials.Builder.trustManager(File rootCerts) |
Use the provided root certificates to verify the client's identity instead of the system's
default.
|
TlsServerCredentials.Builder |
TlsServerCredentials.Builder.trustManager(InputStream rootCerts) |
Use the provided root certificates to verify the client's identity instead of the system's
default.
|
TlsServerCredentials.Builder |
TlsServerCredentials.Builder.trustManager(TrustManager... trustManagers) |
Have the provided trust manager verify the client's identity instead of the system's default.
|