Package io.dapr.v1
Interface CommonProtos.InvokeRequestOrBuilder
- All Superinterfaces:
- com.google.protobuf.MessageLiteOrBuilder,- com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
- CommonProtos.InvokeRequest,- CommonProtos.InvokeRequest.Builder
- Enclosing class:
- CommonProtos
public static interface CommonProtos.InvokeRequestOrBuilder
extends com.google.protobuf.MessageOrBuilder
- 
Method SummaryModifier and Type Method Description java.lang.StringgetContentType()The type of data content.com.google.protobuf.ByteStringgetContentTypeBytes()The type of data content.com.google.protobuf.AnygetData()Required.com.google.protobuf.AnyOrBuildergetDataOrBuilder()Required.CommonProtos.HTTPExtensiongetHttpExtension()HTTP specific fields if request conveys http-compatible request.CommonProtos.HTTPExtensionOrBuildergetHttpExtensionOrBuilder()HTTP specific fields if request conveys http-compatible request.java.lang.StringgetMethod()Required.com.google.protobuf.ByteStringgetMethodBytes()Required.booleanhasData()Required.booleanhasHttpExtension()HTTP specific fields if request conveys http-compatible request.Methods inherited from interface com.google.protobuf.MessageOrBuilderfindInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
- 
Method Details- 
getMethodjava.lang.String getMethod()Required. method is a method name which will be invoked by caller. string method = 1;- Returns:
- The method.
 
- 
getMethodBytescom.google.protobuf.ByteString getMethodBytes()Required. method is a method name which will be invoked by caller. string method = 1;- Returns:
- The bytes for method.
 
- 
hasDataboolean hasData()Required. Bytes value or Protobuf message which caller sent. Dapr treats Any.value as bytes type if Any.type_url is unset. .google.protobuf.Any data = 2;- Returns:
- Whether the data field is set.
 
- 
getDatacom.google.protobuf.Any getData()Required. Bytes value or Protobuf message which caller sent. Dapr treats Any.value as bytes type if Any.type_url is unset. .google.protobuf.Any data = 2;- Returns:
- The data.
 
- 
getDataOrBuildercom.google.protobuf.AnyOrBuilder getDataOrBuilder()Required. Bytes value or Protobuf message which caller sent. Dapr treats Any.value as bytes type if Any.type_url is unset. .google.protobuf.Any data = 2;
- 
getContentTypejava.lang.String getContentType()The type of data content. This field is required if data delivers http request body Otherwise, this is optional. string content_type = 3;- Returns:
- The contentType.
 
- 
getContentTypeBytescom.google.protobuf.ByteString getContentTypeBytes()The type of data content. This field is required if data delivers http request body Otherwise, this is optional. string content_type = 3;- Returns:
- The bytes for contentType.
 
- 
hasHttpExtensionboolean hasHttpExtension()HTTP specific fields if request conveys http-compatible request. This field is required for http-compatible request. Otherwise, this field is optional. .dapr.proto.common.v1.HTTPExtension http_extension = 4;- Returns:
- Whether the httpExtension field is set.
 
- 
getHttpExtensionCommonProtos.HTTPExtension getHttpExtension()HTTP specific fields if request conveys http-compatible request. This field is required for http-compatible request. Otherwise, this field is optional. .dapr.proto.common.v1.HTTPExtension http_extension = 4;- Returns:
- The httpExtension.
 
- 
getHttpExtensionOrBuilderCommonProtos.HTTPExtensionOrBuilder getHttpExtensionOrBuilder()HTTP specific fields if request conveys http-compatible request. This field is required for http-compatible request. Otherwise, this field is optional. .dapr.proto.common.v1.HTTPExtension http_extension = 4;
 
-