timeabarna commented on code in PR #6115:
URL: https://github.com/apache/nifi/pull/6115#discussion_r905761879


##########
nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core-api/src/main/java/org/apache/nifi/controller/ProcessorNode.java:
##########
@@ -300,4 +301,12 @@ public abstract CompletableFuture<Void> 
stop(ProcessScheduler processScheduler,
      * @param context The ProcessContext associated with the Processor 
configuration
      */
     public abstract void onConfigurationRestored(ProcessContext context);
+
+    /**
+     * Returns those parameter references which configures the Processor 
through Parameters. This is for Processor configuration only,
+     * Processor Property Parameter references stored and handled separately.
+     *
+     * @return the configuration Parameter references for this Processor
+     */
+    public abstract List<ParameterReference> 
getConfigurationParameterReferences();

Review Comment:
   This method has been removed.



##########
nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-api/src/main/java/org/apache/nifi/web/StandardNiFiServiceFacade.java:
##########
@@ -1462,6 +1459,25 @@ private Set<AffectedComponentEntity> 
getComponentsAffectedByParameterContextUpda
         return dtoFactory.createAffectedComponentEntities(affectedComponents, 
revisionManager);
     }
 
+    private void getAffectedComponentsByParameterUpdate(final 
ParameterContextDTO parameterContextDto, final Set<String> 
updatedParameterNames, final Set<ComponentNode> affectedComponents,

Review Comment:
   This method has been removed.



-- 
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: issues-unsubscr...@nifi.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to