markap14 commented on a change in pull request #4952:
URL: https://github.com/apache/nifi/pull/4952#discussion_r721568610
##########
File path: nifi-api/src/main/java/org/apache/nifi/reporting/Bulletin.java
##########
@@ -131,6 +132,14 @@ public void setSourceType(ComponentType sourceType) {
this.sourceType = sourceType;
}
+ public String getFlowFileUUID() {
+ return flowFileUUID;
+ }
+
+ public void setFlowFileUUID(String flowFileUUID) {
+ this.flowFileUUID = flowFileUUID;
+ }
Review comment:
Java naming conventions are generally accepted to use mixed case with
acronyms (i.e., getFlowFileUuid(), setFlowFileUuid()). This is definitely the
pattern we tend to follow in NiFi. Probably best to use that naming convention
here.
--
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]