Package tensorflow.serving
Interface SslConfig.SSLConfigOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
SslConfig.SSLConfig,SslConfig.SSLConfig.Builder
- Enclosing class:
SslConfig
public static interface SslConfig.SSLConfigOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptionbooleanvalid client certificate required ?custom certificate authoritycom.google.protobuf.ByteStringcustom certificate authoritypublic server certificatecom.google.protobuf.ByteStringpublic server certificateprivate server key for SSLcom.google.protobuf.ByteStringprivate server key for SSLMethods inherited from interface com.google.protobuf.MessageLiteOrBuilder
isInitializedMethods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
Method Details
-
getServerKey
String getServerKey()private server key for SSL
string server_key = 1;- Returns:
- The serverKey.
-
getServerKeyBytes
com.google.protobuf.ByteString getServerKeyBytes()private server key for SSL
string server_key = 1;- Returns:
- The bytes for serverKey.
-
getServerCert
String getServerCert()public server certificate
string server_cert = 2;- Returns:
- The serverCert.
-
getServerCertBytes
com.google.protobuf.ByteString getServerCertBytes()public server certificate
string server_cert = 2;- Returns:
- The bytes for serverCert.
-
getCustomCa
String getCustomCa()custom certificate authority
string custom_ca = 3;- Returns:
- The customCa.
-
getCustomCaBytes
com.google.protobuf.ByteString getCustomCaBytes()custom certificate authority
string custom_ca = 3;- Returns:
- The bytes for customCa.
-
getClientVerify
boolean getClientVerify()valid client certificate required ?
bool client_verify = 4;- Returns:
- The clientVerify.
-