Uses of Class
io.grpc.TlsServerCredentials.Builder
Packages that use TlsServerCredentials.Builder
-
Uses of TlsServerCredentials.Builder in io.grpc
Methods in io.grpc that return TlsServerCredentials.BuilderModifier and TypeMethodDescriptionTlsServerCredentials.Builder.clientAuth(TlsServerCredentials.ClientAuth clientAuth) Indicates whether the server should expect a client's identity.TlsServerCredentials.Builder.keyManager(File certChain, File privateKey) Use the provided certificate chain and private key as the server's identity.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.keyManager(InputStream certChain, InputStream privateKey) Use the provided certificate chain and private key as the server's identity.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.keyManager(KeyManager... keyManagers) Have the provided key manager select the server's identity.static TlsServerCredentials.BuilderTlsServerCredentials.newBuilder()Creates a builder for changing default configuration.TlsServerCredentials.Builder.requireFakeFeature()RequiresTlsServerCredentials.Feature.FAKEto be understood.TlsServerCredentials.Builder.trustManager(File rootCerts) Use the provided root certificates to verify the client's identity instead of the system's default.TlsServerCredentials.Builder.trustManager(InputStream rootCerts) Use the provided root certificates to verify the client's identity instead of the system's default.TlsServerCredentials.Builder.trustManager(TrustManager... trustManagers) Have the provided trust manager verify the client's identity instead of the system's default.