turcsanyip commented on code in PR #8954:
URL: https://github.com/apache/nifi/pull/8954#discussion_r1636833089
##########
nifi-toolkit/nifi-toolkit-cli/src/main/java/org/apache/nifi/toolkit/cli/impl/client/nifi/ControllerClient.java:
##########
@@ -61,6 +66,26 @@ public interface ControllerClient {
VersionedReportingTaskImportResponseEntity
importReportingTasks(VersionedReportingTaskImportRequestEntity
importRequestEntity)
throws NiFiClientException, IOException;
+ FlowAnalysisRulesEntity getFlowAnalysisRules() throws NiFiClientException,
IOException;
+
+ FlowAnalysisRuleEntity getFlowAnalysisRule(final String id) throws
NiFiClientException, IOException;
+
+ PropertyDescriptorEntity getFlowAnalysisRulePropertyDescriptor(final
String componentId, final String propertyName, final Boolean sensitive) throws
NiFiClientException, IOException;
+
+ FlowAnalysisRuleEntity createFlowAnalysisRule(FlowAnalysisRuleEntity
reportingTask) throws NiFiClientException, IOException;
+
+ FlowAnalysisRuleEntity updateFlowAnalysisRule(final FlowAnalysisRuleEntity
flowAnalysisRuleEntity) throws NiFiClientException, IOException;
+
+ FlowAnalysisRuleEntity activateFlowAnalysisRule(final String id, final
FlowAnalysisRuleRunStatusEntity runStatusEntity) throws NiFiClientException,
IOException;
+
+ FlowAnalysisRuleEntity deleteFlowAnalysisRule(final FlowAnalysisRuleEntity
flowAnalysisRule) throws NiFiClientException, IOException;
+
+ VerifyConfigRequestEntity
submitFlowAnalysisRuleConfigVerificationRequest(final VerifyConfigRequestEntity
configRequestEntity) throws NiFiClientException, IOException;
+
+ VerifyConfigRequestEntity
getFlowAnalysisRuleConfigVerificationRequest(final String taskId, final String
verificationRequestId) throws NiFiClientException, IOException;
+
+ VerifyConfigRequestEntity
deleteFlowAnalysisRuleConfigVerificationRequest(final String taskId, final
String verificationRequestId) throws NiFiClientException, IOException;
Review Comment:
What is the purpose of these methods? They seem to be unused.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]