Interface SignBlobResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
SignBlobResponse,SignBlobResponse.Builder
public interface SignBlobResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetKeyId()The ID of the key used to sign the blob.com.google.protobuf.ByteStringgetKeyIdBytes()The ID of the key used to sign the blob.com.google.protobuf.ByteStringgetSignedBlob()The signed blob.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getKeyId
String getKeyId()
The ID of the key used to sign the blob.
string key_id = 1;- Returns:
- The keyId.
-
getKeyIdBytes
com.google.protobuf.ByteString getKeyIdBytes()
The ID of the key used to sign the blob.
string key_id = 1;- Returns:
- The bytes for keyId.
-
getSignedBlob
com.google.protobuf.ByteString getSignedBlob()
The signed blob.
bytes signed_blob = 4;- Returns:
- The signedBlob.
-
-