Package io.temporal.api.sdk.v1
Interface WorkflowInteractionDefinitionOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
WorkflowInteractionDefinition,WorkflowInteractionDefinition.Builder
@Generated(value="protoc", comments="annotations:WorkflowInteractionDefinitionOrBuilder.java.pb.meta") public interface WorkflowInteractionDefinitionOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetDescription()An optional interaction description provided by the application.com.google.protobuf.ByteStringgetDescriptionBytes()An optional interaction description provided by the application.java.lang.StringgetName()An optional name for the handler.com.google.protobuf.ByteStringgetNameBytes()An optional name for the handler.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getName
java.lang.String getName()
An optional name for the handler. If missing, it represents a dynamic handler that processes any interactions not handled by others. There is at most one dynamic handler per workflow and interaction kind.
string name = 1;- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
An optional name for the handler. If missing, it represents a dynamic handler that processes any interactions not handled by others. There is at most one dynamic handler per workflow and interaction kind.
string name = 1;- Returns:
- The bytes for name.
-
getDescription
java.lang.String getDescription()
An optional interaction description provided by the application. By convention, external tools may interpret its first part, i.e., ending with a line break, as a summary of the description.
string description = 2;- Returns:
- The description.
-
getDescriptionBytes
com.google.protobuf.ByteString getDescriptionBytes()
An optional interaction description provided by the application. By convention, external tools may interpret its first part, i.e., ending with a line break, as a summary of the description.
string description = 2;- Returns:
- The bytes for description.
-
-