Package io.dapr.v1
Interface DaprProtos.SubtleVerifyRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
DaprProtos.SubtleVerifyRequest,DaprProtos.SubtleVerifyRequest.Builder
- Enclosing class:
- DaprProtos
public static interface DaprProtos.SubtleVerifyRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetAlgorithm()Algorithm to use, as in the JWA standard.com.google.protobuf.ByteStringgetAlgorithmBytes()Algorithm to use, as in the JWA standard.StringgetComponentName()Name of the componentcom.google.protobuf.ByteStringgetComponentNameBytes()Name of the componentcom.google.protobuf.ByteStringgetDigest()Digest of the message.StringgetKeyName()Name (or name/version) of the key.com.google.protobuf.ByteStringgetKeyNameBytes()Name (or name/version) of the key.com.google.protobuf.ByteStringgetSignature()Signature to verify.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getComponentName
String getComponentName()
Name of the component
string component_name = 1 [json_name = "componentName"];- Returns:
- The componentName.
-
getComponentNameBytes
com.google.protobuf.ByteString getComponentNameBytes()
Name of the component
string component_name = 1 [json_name = "componentName"];- Returns:
- The bytes for componentName.
-
getDigest
com.google.protobuf.ByteString getDigest()
Digest of the message.
bytes digest = 2;- Returns:
- The digest.
-
getAlgorithm
String getAlgorithm()
Algorithm to use, as in the JWA standard.
string algorithm = 3;- Returns:
- The algorithm.
-
getAlgorithmBytes
com.google.protobuf.ByteString getAlgorithmBytes()
Algorithm to use, as in the JWA standard.
string algorithm = 3;- Returns:
- The bytes for algorithm.
-
getKeyName
String getKeyName()
Name (or name/version) of the key.
string key_name = 4 [json_name = "keyName"];- Returns:
- The keyName.
-
getKeyNameBytes
com.google.protobuf.ByteString getKeyNameBytes()
Name (or name/version) of the key.
string key_name = 4 [json_name = "keyName"];- Returns:
- The bytes for keyName.
-
getSignature
com.google.protobuf.ByteString getSignature()
Signature to verify.
bytes signature = 5;- Returns:
- The signature.
-
-