Interface RuleEngineOutputOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
RuleEngineOutput,RuleEngineOutput.Builder
public interface RuleEngineOutputOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ActionExecutorOutputgetActionExecutorOutput()Output from Action Executor containing rule and corresponding actions execution result.ActionExecutorOutputOrBuildergetActionExecutorOutputOrBuilder()Output from Action Executor containing rule and corresponding actions execution result.StringgetDocumentName()Name of the document against which the rules and actions were evaluated.com.google.protobuf.ByteStringgetDocumentNameBytes()Name of the document against which the rules and actions were evaluated.RuleEvaluatorOutputgetRuleEvaluatorOutput()Output from Rule Evaluator containing matched, unmatched and invalid rules.RuleEvaluatorOutputOrBuildergetRuleEvaluatorOutputOrBuilder()Output from Rule Evaluator containing matched, unmatched and invalid rules.booleanhasActionExecutorOutput()Output from Action Executor containing rule and corresponding actions execution result.booleanhasRuleEvaluatorOutput()Output from Rule Evaluator containing matched, unmatched and invalid rules.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getDocumentName
String getDocumentName()
Name of the document against which the rules and actions were evaluated.
string document_name = 3;- Returns:
- The documentName.
-
getDocumentNameBytes
com.google.protobuf.ByteString getDocumentNameBytes()
Name of the document against which the rules and actions were evaluated.
string document_name = 3;- Returns:
- The bytes for documentName.
-
hasRuleEvaluatorOutput
boolean hasRuleEvaluatorOutput()
Output from Rule Evaluator containing matched, unmatched and invalid rules.
.google.cloud.contentwarehouse.v1.RuleEvaluatorOutput rule_evaluator_output = 1;- Returns:
- Whether the ruleEvaluatorOutput field is set.
-
getRuleEvaluatorOutput
RuleEvaluatorOutput getRuleEvaluatorOutput()
Output from Rule Evaluator containing matched, unmatched and invalid rules.
.google.cloud.contentwarehouse.v1.RuleEvaluatorOutput rule_evaluator_output = 1;- Returns:
- The ruleEvaluatorOutput.
-
getRuleEvaluatorOutputOrBuilder
RuleEvaluatorOutputOrBuilder getRuleEvaluatorOutputOrBuilder()
Output from Rule Evaluator containing matched, unmatched and invalid rules.
.google.cloud.contentwarehouse.v1.RuleEvaluatorOutput rule_evaluator_output = 1;
-
hasActionExecutorOutput
boolean hasActionExecutorOutput()
Output from Action Executor containing rule and corresponding actions execution result.
.google.cloud.contentwarehouse.v1.ActionExecutorOutput action_executor_output = 2;- Returns:
- Whether the actionExecutorOutput field is set.
-
getActionExecutorOutput
ActionExecutorOutput getActionExecutorOutput()
Output from Action Executor containing rule and corresponding actions execution result.
.google.cloud.contentwarehouse.v1.ActionExecutorOutput action_executor_output = 2;- Returns:
- The actionExecutorOutput.
-
getActionExecutorOutputOrBuilder
ActionExecutorOutputOrBuilder getActionExecutorOutputOrBuilder()
Output from Action Executor containing rule and corresponding actions execution result.
.google.cloud.contentwarehouse.v1.ActionExecutorOutput action_executor_output = 2;
-
-