Package io.temporal.api.workflow.v1
Interface PendingActivityInfo.PauseInfo.RuleOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
PendingActivityInfo.PauseInfo.Rule,PendingActivityInfo.PauseInfo.Rule.Builder
- Enclosing class:
- PendingActivityInfo.PauseInfo
public static interface PendingActivityInfo.PauseInfo.RuleOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetIdentity()The identity of the actor that created the rule.com.google.protobuf.ByteStringgetIdentityBytes()The identity of the actor that created the rule.java.lang.StringgetReason()Reason why rule was created.com.google.protobuf.ByteStringgetReasonBytes()Reason why rule was created.java.lang.StringgetRuleId()The rule that paused the activity.com.google.protobuf.ByteStringgetRuleIdBytes()The rule that paused the activity.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getRuleId
java.lang.String getRuleId()
The rule that paused the activity.
string rule_id = 1;- Returns:
- The ruleId.
-
getRuleIdBytes
com.google.protobuf.ByteString getRuleIdBytes()
The rule that paused the activity.
string rule_id = 1;- Returns:
- The bytes for ruleId.
-
getIdentity
java.lang.String getIdentity()
The identity of the actor that created the rule.
string identity = 2;- Returns:
- The identity.
-
getIdentityBytes
com.google.protobuf.ByteString getIdentityBytes()
The identity of the actor that created the rule.
string identity = 2;- Returns:
- The bytes for identity.
-
getReason
java.lang.String getReason()
Reason why rule was created. Populated from rule description.
string reason = 3;- Returns:
- The reason.
-
getReasonBytes
com.google.protobuf.ByteString getReasonBytes()
Reason why rule was created. Populated from rule description.
string reason = 3;- Returns:
- The bytes for reason.
-
-