From b574a7e41a90617e8befaee560be9d9f35afcfac Mon Sep 17 00:00:00 2001 From: Mike Moser Date: Mon, 1 Apr 2024 18:09:16 +0000 Subject: [PATCH] NIFI-12987 allow controller service type to be searchable Signed-off-by: Pierre Villard This closes #8593. --- .../ControllerServiceNodeMatcher.java | 3 ++ .../ControllerServiceNodeMatcherTest.java | 43 ++++++++++++++++++- 2 files changed, 45 insertions(+), 1 deletion(-) diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-api/src/main/java/org/apache/nifi/web/search/attributematchers/ControllerServiceNodeMatcher.java b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-api/src/main/java/org/apache/nifi/web/search/attributematchers/ControllerServiceNodeMatcher.java index ab20d14aba..7b5111330f 100644 --- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-api/src/main/java/org/apache/nifi/web/search/attributematchers/ControllerServiceNodeMatcher.java +++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-api/src/main/java/org/apache/nifi/web/search/attributematchers/ControllerServiceNodeMatcher.java @@ -28,6 +28,7 @@ public class ControllerServiceNodeMatcher implements AttributeMatcher matches) { @@ -37,5 +38,7 @@ public class ControllerServiceNodeMatcher implements AttributeMatcher validate(ValidationContext context) { + return null; + } + + @Override + public PropertyDescriptor getPropertyDescriptor(String name) { + return null; + } + + @Override + public void onPropertyModified(PropertyDescriptor descriptor, String oldValue, String newValue) { + } + + @Override + public List getPropertyDescriptors() { + return null; + } + + @Override + public String getIdentifier() { + return null; + } + + @Override + public void initialize(ControllerServiceInitializationContext context) { + } } } \ No newline at end of file