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 ActionExecutorOutput
getActionExecutorOutput()
Output from Action Executor containing rule and corresponding actions execution result.ActionExecutorOutputOrBuilder
getActionExecutorOutputOrBuilder()
Output from Action Executor containing rule and corresponding actions execution result.String
getDocumentName()
Name of the document against which the rules and actions were evaluated.com.google.protobuf.ByteString
getDocumentNameBytes()
Name of the document against which the rules and actions were evaluated.RuleEvaluatorOutput
getRuleEvaluatorOutput()
Output from Rule Evaluator containing matched, unmatched and invalid rules.RuleEvaluatorOutputOrBuilder
getRuleEvaluatorOutputOrBuilder()
Output from Rule Evaluator containing matched, unmatched and invalid rules.boolean
hasActionExecutorOutput()
Output from Action Executor containing rule and corresponding actions execution result.boolean
hasRuleEvaluatorOutput()
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;
-
-