You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by al...@apache.org on 2015/04/22 23:12:59 UTC

[09/49] incubator-nifi git commit: NIFI-271 checkpoint push because there are so many changes. Long way to go but got through dto library

http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/9faaef8c/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/action/details/PurgeDetailsDTO.java
----------------------------------------------------------------------
diff --git a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/action/details/PurgeDetailsDTO.java b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/action/details/PurgeDetailsDTO.java
index b5a5bcb..6d5b02f 100644
--- a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/action/details/PurgeDetailsDTO.java
+++ b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/action/details/PurgeDetailsDTO.java
@@ -30,9 +30,7 @@ public class PurgeDetailsDTO extends ActionDetailsDTO {
     private Date endDate;
 
     /**
-     * The end date for this purge action.
-     *
-     * @return
+     * @return end date for this purge action
      */
     @XmlJavaTypeAdapter(DateTimeAdapter.class)
     public Date getEndDate() {

http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/9faaef8c/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/provenance/AttributeDTO.java
----------------------------------------------------------------------
diff --git a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/provenance/AttributeDTO.java b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/provenance/AttributeDTO.java
index ed58077..a9db5d0 100644
--- a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/provenance/AttributeDTO.java
+++ b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/provenance/AttributeDTO.java
@@ -29,9 +29,7 @@ public class AttributeDTO {
     private String previousValue;
 
     /**
-     * The attribute name.
-     *
-     * @return
+     * @return attribute name
      */
     public String getName() {
         return name;
@@ -42,9 +40,7 @@ public class AttributeDTO {
     }
 
     /**
-     * The attribute value.
-     *
-     * @return
+     * @return attribute value
      */
     public String getValue() {
         return value;
@@ -55,9 +51,7 @@ public class AttributeDTO {
     }
 
     /**
-     * The value of this attribute before the event took place.
-     *
-     * @return
+     * @return value of this attribute before the event took place
      */
     public String getPreviousValue() {
         return previousValue;

http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/9faaef8c/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/provenance/ProvenanceDTO.java
----------------------------------------------------------------------
diff --git a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/provenance/ProvenanceDTO.java b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/provenance/ProvenanceDTO.java
index 90dd119..333570e 100644
--- a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/provenance/ProvenanceDTO.java
+++ b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/provenance/ProvenanceDTO.java
@@ -44,9 +44,7 @@ public class ProvenanceDTO {
     private ProvenanceResultsDTO results;
 
     /**
-     * The id of this provenance query.
-     *
-     * @return
+     * @return id of this provenance query
      */
     public String getId() {
         return id;
@@ -57,9 +55,7 @@ public class ProvenanceDTO {
     }
 
     /**
-     * The URI for this query. Used for obtaining the requests at a later time.
-     *
-     * @return
+     * @return URI for this query. Used for obtaining the requests at a later time
      */
     public String getUri() {
         return uri;
@@ -70,9 +66,7 @@ public class ProvenanceDTO {
     }
 
     /**
-     * The id of the node in the cluster where this provenance originated.
-     *
-     * @return
+     * @return id of the node in the cluster where this provenance originated
      */
     public String getClusterNodeId() {
         return clusterNodeId;
@@ -83,9 +77,7 @@ public class ProvenanceDTO {
     }
 
     /**
-     * The time the query was submitted.
-     *
-     * @return
+     * @return time the query was submitted
      */
     @XmlJavaTypeAdapter(TimestampAdapter.class)
     public Date getSubmissionTime() {
@@ -97,9 +89,7 @@ public class ProvenanceDTO {
     }
 
     /**
-     * The expiration time of the query results.
-     *
-     * @return
+     * @return expiration time of the query results
      */
     @XmlJavaTypeAdapter(TimestampAdapter.class)
     public Date getExpiration() {
@@ -111,9 +101,7 @@ public class ProvenanceDTO {
     }
 
     /**
-     * The percent completed.
-     *
-     * @return
+     * @return percent completed
      */
     public Integer getPercentCompleted() {
         return percentCompleted;
@@ -124,9 +112,7 @@ public class ProvenanceDTO {
     }
 
     /**
-     * Whether the query has finished.
-     *
-     * @return
+     * @return whether the query has finished
      */
     public Boolean isFinished() {
         return finished;
@@ -137,9 +123,7 @@ public class ProvenanceDTO {
     }
 
     /**
-     * The provenance request.
-     *
-     * @return
+     * @return provenance request
      */
     public ProvenanceRequestDTO getRequest() {
         return request;
@@ -150,9 +134,7 @@ public class ProvenanceDTO {
     }
 
     /**
-     * The results of this query.
-     *
-     * @return
+     * @return results of this query
      */
     public ProvenanceResultsDTO getResults() {
         return results;

http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/9faaef8c/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/provenance/ProvenanceEventDTO.java
----------------------------------------------------------------------
diff --git a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/provenance/ProvenanceEventDTO.java b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/provenance/ProvenanceEventDTO.java
index b1ead42..883fce8 100644
--- a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/provenance/ProvenanceEventDTO.java
+++ b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/provenance/ProvenanceEventDTO.java
@@ -83,9 +83,7 @@ public class ProvenanceEventDTO {
     private String sourceConnectionIdentifier;
 
     /**
-     * The event uuid.
-     *
-     * @return
+     * @return event uuid
      */
     public String getId() {
         return id;
@@ -96,9 +94,7 @@ public class ProvenanceEventDTO {
     }
 
     /**
-     * The event id.
-     *
-     * @return
+     * @return event id
      */
     public Long getEventId() {
         return eventId;
@@ -109,9 +105,7 @@ public class ProvenanceEventDTO {
     }
 
     /**
-     * The time the event occurred.
-     *
-     * @return
+     * @return time the event occurred
      */
     @XmlJavaTypeAdapter(TimestampAdapter.class)
     public Date getEventTime() {
@@ -123,9 +117,7 @@ public class ProvenanceEventDTO {
     }
 
     /**
-     * The UUID of the FlowFile for this event.
-     *
-     * @return
+     * @return UUID of the FlowFile for this event
      */
     public String getFlowFileUuid() {
         return flowFileUuid;
@@ -136,9 +128,7 @@ public class ProvenanceEventDTO {
     }
 
     /**
-     * The size of the FlowFile for this event.
-     *
-     * @return
+     * @return size of the FlowFile for this event
      */
     public String getFileSize() {
         return fileSize;
@@ -149,9 +139,7 @@ public class ProvenanceEventDTO {
     }
 
     /**
-     * The size of the FlowFile in bytes for this event.
-     *
-     * @return
+     * @return size of the FlowFile in bytes for this event
      */
     public Long getFileSizeBytes() {
         return fileSizeBytes;
@@ -162,9 +150,7 @@ public class ProvenanceEventDTO {
     }
 
     /**
-     * The type of this event.
-     *
-     * @return
+     * @return type of this event
      */
     public String getEventType() {
         return eventType;
@@ -175,9 +161,7 @@ public class ProvenanceEventDTO {
     }
 
     /**
-     * The attributes for the FlowFile for this event.
-     *
-     * @return
+     * @return attributes for the FlowFile for this event
      */
     public Collection<AttributeDTO> getAttributes() {
         return attributes;
@@ -188,10 +172,8 @@ public class ProvenanceEventDTO {
     }
 
     /**
-     * The id of the group that this component resides in. If the component is
-     * no longer in the flow, the group id will not be set.
-     *
-     * @return
+     * @return id of the group that this component resides in. If the component is
+     * no longer in the flow, the group id will not be set
      */
     public String getGroupId() {
         return groupId;
@@ -202,9 +184,7 @@ public class ProvenanceEventDTO {
     }
 
     /**
-     * The id of the component that generated this event.
-     *
-     * @return
+     * @return id of the component that generated this event
      */
     public String getComponentId() {
         return componentId;
@@ -215,9 +195,7 @@ public class ProvenanceEventDTO {
     }
 
     /**
-     * The name of the component that generated this event.
-     *
-     * @return
+     * @return name of the component that generated this event
      */
     public String getComponentName() {
         return componentName;
@@ -228,9 +206,7 @@ public class ProvenanceEventDTO {
     }
 
     /**
-     * The type of the component that generated this event.
-     *
-     * @return
+     * @return type of the component that generated this event
      */
     public String getComponentType() {
         return componentType;
@@ -241,9 +217,7 @@ public class ProvenanceEventDTO {
     }
 
     /**
-     * The source/destination system URI if the event was a RECEIVE/SEND.
-     *
-     * @return
+     * @return source/destination system URI if the event was a RECEIVE/SEND
      */
     public String getTransitUri() {
         return transitUri;
@@ -254,9 +228,7 @@ public class ProvenanceEventDTO {
     }
 
     /**
-     * The alternate identifier URI for the FlowFile for this event.
-     *
-     * @return
+     * @return alternate identifier URI for the FlowFile for this event
      */
     public String getAlternateIdentifierUri() {
         return alternateIdentifierUri;
@@ -267,9 +239,7 @@ public class ProvenanceEventDTO {
     }
 
     /**
-     * The identifier of the node where this event originated.
-     *
-     * @return
+     * @return identifier of the node where this event originated
      */
     public String getClusterNodeId() {
         return clusterNodeId;
@@ -280,9 +250,7 @@ public class ProvenanceEventDTO {
     }
 
     /**
-     * The label to use to show which node this event originated from.
-     *
-     * @return
+     * @return label to use to show which node this event originated from
      */
     public String getClusterNodeAddress() {
         return clusterNodeAddress;
@@ -293,9 +261,7 @@ public class ProvenanceEventDTO {
     }
 
     /**
-     * The parent uuids for this event.
-     *
-     * @return
+     * @return parent uuids for this event
      */
     public List<String> getParentUuids() {
         return parentUuids;
@@ -306,9 +272,7 @@ public class ProvenanceEventDTO {
     }
 
     /**
-     * The child uuids for this event.
-     *
-     * @return
+     * @return child uuids for this event
      */
     public List<String> getChildUuids() {
         return childUuids;
@@ -319,9 +283,7 @@ public class ProvenanceEventDTO {
     }
 
     /**
-     * The duration of the event, in milliseconds.
-     *
-     * @return
+     * @return duration of the event, in milliseconds
      */
     public Long getEventDuration() {
         return eventDuration;
@@ -332,9 +294,7 @@ public class ProvenanceEventDTO {
     }
 
     /**
-     * The duration since the lineage began, in milliseconds.
-     *
-     * @return
+     * @return duration since the lineage began, in milliseconds
      */
     public Long getLineageDuration() {
         return lineageDuration;
@@ -345,9 +305,7 @@ public class ProvenanceEventDTO {
     }
 
     /**
-     * The source system FlowFile id.
-     *
-     * @return
+     * @return source system FlowFile id
      */
     public String getSourceSystemFlowFileId() {
         return sourceSystemFlowFileId;
@@ -358,10 +316,8 @@ public class ProvenanceEventDTO {
     }
 
     /**
-     * If this represents a route event, this is the relationship to which the
-     * flowfile was routed.
-     *
-     * @return
+     * @return If this represents a route event, this is the relationship to which the
+     * flowfile was routed
      */
     public String getRelationship() {
         return relationship;
@@ -372,9 +328,7 @@ public class ProvenanceEventDTO {
     }
 
     /**
-     * The event details.
-     *
-     * @return
+     * @return event details
      */
     public String getDetails() {
         return details;
@@ -385,9 +339,7 @@ public class ProvenanceEventDTO {
     }
 
     /**
-     * Whether or not the input and output content claim is the same.
-     *
-     * @return
+     * @return whether or not the input and output content claim is the same
      */
     public Boolean getContentEqual() {
         return contentEqual;
@@ -398,9 +350,7 @@ public class ProvenanceEventDTO {
     }
 
     /**
-     * Returns whether or not the output content is still available.
-     *
-     * @return
+     * @return whether or not the output content is still available
      */
     public Boolean getOutputContentAvailable() {
         return outputContentAvailable;
@@ -411,10 +361,8 @@ public class ProvenanceEventDTO {
     }
 
     /**
-     * Returns the Section in which the output Content Claim lives, or
-     * <code>null</code> if no Content Claim exists.
-     *
-     * @return
+     * @return the Section in which the output Content Claim lives, or
+     * <code>null</code> if no Content Claim exists
      */
     public String getOutputContentClaimSection() {
         return outputContentClaimSection;
@@ -425,10 +373,8 @@ public class ProvenanceEventDTO {
     }
 
     /**
-     * Returns the Container in which the output Content Claim lives, or
-     * <code>null</code> if no Content Claim exists.
-     *
-     * @return
+     * @return the Container in which the output Content Claim lives, or
+     * <code>null</code> if no Content Claim exists
      */
     public String getOutputContentClaimContainer() {
         return outputContentClaimContainer;
@@ -439,10 +385,8 @@ public class ProvenanceEventDTO {
     }
 
     /**
-     * Returns the Identifier of the output Content Claim, or <code>null</code>
-     * if no Content Claim exists.
-     *
-     * @return
+     * @return the Identifier of the output Content Claim, or <code>null</code>
+     * if no Content Claim exists
      */
     public String getOutputContentClaimIdentifier() {
         return outputContentClaimIdentifier;
@@ -453,10 +397,8 @@ public class ProvenanceEventDTO {
     }
 
     /**
-     * Returns the offset into the the output Content Claim where the FlowFile's
-     * content begins, or <code>null</code> if no Content Claim exists.
-     *
-     * @return
+     * @return the offset into the the output Content Claim where the FlowFile's
+     * content begins, or <code>null</code> if no Content Claim exists
      */
     public Long getOutputContentClaimOffset() {
         return outputContentClaimOffset;
@@ -467,9 +409,7 @@ public class ProvenanceEventDTO {
     }
 
     /**
-     * Returns the formatted file size of the input content claim.
-     *
-     * @return
+     * @return the formatted file size of the input content claim
      */
     public String getOutputContentClaimFileSize() {
         return outputContentClaimFileSize;
@@ -480,9 +420,7 @@ public class ProvenanceEventDTO {
     }
 
     /**
-     * Returns the number of bytes of the input content claim.
-     *
-     * @return
+     * @return the number of bytes of the input content claim
      */
     public Long getOutputContentClaimFileSizeBytes() {
         return outputContentClaimFileSizeBytes;
@@ -493,9 +431,7 @@ public class ProvenanceEventDTO {
     }
 
     /**
-     * Returns whether or not the input content is still available.
-     *
-     * @return
+     * @return whether or not the input content is still available
      */
     public Boolean getInputContentAvailable() {
         return inputContentAvailable;
@@ -506,10 +442,8 @@ public class ProvenanceEventDTO {
     }
 
     /**
-     * Returns the Section in which the input Content Claim lives, or
-     * <code>null</code> if no Content Claim exists.
-     *
-     * @return
+     * @return the Section in which the input Content Claim lives, or
+     * <code>null</code> if no Content Claim exists
      */
     public String getInputContentClaimSection() {
         return inputContentClaimSection;
@@ -520,10 +454,8 @@ public class ProvenanceEventDTO {
     }
 
     /**
-     * Returns the Container in which the input Content Claim lives, or
-     * <code>null</code> if no Content Claim exists.
-     *
-     * @return
+     * @return the Container in which the input Content Claim lives, or
+     * <code>null</code> if no Content Claim exists
      */
     public String getInputContentClaimContainer() {
         return inputContentClaimContainer;
@@ -534,10 +466,8 @@ public class ProvenanceEventDTO {
     }
 
     /**
-     * Returns the Identifier of the input Content Claim, or <code>null</code>
-     * if no Content Claim exists.
-     *
-     * @return
+     * @return the Identifier of the input Content Claim, or <code>null</code>
+     * if no Content Claim exists
      */
     public String getInputContentClaimIdentifier() {
         return inputContentClaimIdentifier;
@@ -548,10 +478,8 @@ public class ProvenanceEventDTO {
     }
 
     /**
-     * Returns the offset into the the input Content Claim where the FlowFile's
-     * content begins, or <code>null</code> if no Content Claim exists.
-     *
-     * @return
+     * @return the offset into the the input Content Claim where the FlowFile's
+     * content begins, or <code>null</code> if no Content Claim exists
      */
     public Long getInputContentClaimOffset() {
         return inputContentClaimOffset;
@@ -562,9 +490,7 @@ public class ProvenanceEventDTO {
     }
 
     /**
-     * Returns the formatted file size of the input content claim.
-     *
-     * @return
+     * @return the formatted file size of the input content claim
      */
     public String getInputContentClaimFileSize() {
         return inputContentClaimFileSize;
@@ -575,9 +501,7 @@ public class ProvenanceEventDTO {
     }
 
     /**
-     * Returns the number of bytes of the input content claim.
-     *
-     * @return
+     * @return the number of bytes of the input content claim
      */
     public Long getInputContentClaimFileSizeBytes() {
         return inputContentClaimFileSizeBytes;
@@ -588,9 +512,7 @@ public class ProvenanceEventDTO {
     }
 
     /**
-     * Returns whether or not replay is available.
-     *
-     * @return
+     * @return whether or not replay is available
      */
     public Boolean getReplayAvailable() {
         return replayAvailable;
@@ -601,9 +523,7 @@ public class ProvenanceEventDTO {
     }
 
     /**
-     * Returns the explanation as to why replay is unavailable.
-     *
-     * @return
+     * @return the explanation as to why replay is unavailable
      */
     public String getReplayExplanation() {
         return replayExplanation;
@@ -614,11 +534,9 @@ public class ProvenanceEventDTO {
     }
 
     /**
-     * Returns identifier of the FlowFile Queue / Connection from which the
+     * @return identifier of the FlowFile Queue / Connection from which the
      * FlowFile was pulled to generate this event, or <code>null</code> if
-     * either the queue is unknown or the FlowFile was created by this event.
-     *
-     * @return
+     * either the queue is unknown or the FlowFile was created by this event
      */
     public String getSourceConnectionIdentifier() {
         return sourceConnectionIdentifier;

http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/9faaef8c/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/provenance/ProvenanceOptionsDTO.java
----------------------------------------------------------------------
diff --git a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/provenance/ProvenanceOptionsDTO.java b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/provenance/ProvenanceOptionsDTO.java
index 7f939b9..2c7f467 100644
--- a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/provenance/ProvenanceOptionsDTO.java
+++ b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/provenance/ProvenanceOptionsDTO.java
@@ -28,9 +28,7 @@ public class ProvenanceOptionsDTO {
     private List<ProvenanceSearchableFieldDTO> searchableFields;
 
     /**
-     * The available searchable fields for this NiFi instance.
-     *
-     * @return
+     * @return available searchable fields for this NiFi instance
      */
     public List<ProvenanceSearchableFieldDTO> getSearchableFields() {
         return searchableFields;

http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/9faaef8c/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/provenance/ProvenanceRequestDTO.java
----------------------------------------------------------------------
diff --git a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/provenance/ProvenanceRequestDTO.java b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/provenance/ProvenanceRequestDTO.java
index e9e5453..bc239ee 100644
--- a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/provenance/ProvenanceRequestDTO.java
+++ b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/provenance/ProvenanceRequestDTO.java
@@ -37,9 +37,7 @@ public class ProvenanceRequestDTO {
     private Integer maxResults;
 
     /**
-     * Returns the search terms to use for this search
-     *
-     * @return
+     * @return the search terms to use for this search
      */
     public Map<String, String> getSearchTerms() {
         return searchTerms;
@@ -50,9 +48,7 @@ public class ProvenanceRequestDTO {
     }
 
     /**
-     * The earliest event time to include in the query
-     *
-     * @return
+     * @return earliest event time to include in the query
      */
     @XmlJavaTypeAdapter(DateTimeAdapter.class)
     public Date getStartDate() {
@@ -64,9 +60,7 @@ public class ProvenanceRequestDTO {
     }
 
     /**
-     * The latest event time to include in the query
-     *
-     * @return
+     * @return latest event time to include in the query
      */
     @XmlJavaTypeAdapter(DateTimeAdapter.class)
     public Date getEndDate() {
@@ -78,9 +72,7 @@ public class ProvenanceRequestDTO {
     }
 
     /**
-     * The minimum file size to include in the query.
-     *
-     * @return
+     * @return minimum file size to include in the query
      */
     public String getMinimumFileSize() {
         return minimumFileSize;
@@ -91,9 +83,7 @@ public class ProvenanceRequestDTO {
     }
 
     /**
-     * The maximum file size to include in the query.
-     *
-     * @return
+     * @return maximum file size to include in the query
      */
     public String getMaximumFileSize() {
         return maximumFileSize;
@@ -104,9 +94,7 @@ public class ProvenanceRequestDTO {
     }
 
     /**
-     * The number of max results.
-     *
-     * @return
+     * @return number of max results
      */
     public Integer getMaxResults() {
         return maxResults;

http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/9faaef8c/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/provenance/ProvenanceResultsDTO.java
----------------------------------------------------------------------
diff --git a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/provenance/ProvenanceResultsDTO.java b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/provenance/ProvenanceResultsDTO.java
index d6ea8a0..6d2f64d 100644
--- a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/provenance/ProvenanceResultsDTO.java
+++ b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/provenance/ProvenanceResultsDTO.java
@@ -41,9 +41,7 @@ public class ProvenanceResultsDTO {
     private Set<String> errors;
 
     /**
-     * Any error messages.
-     *
-     * @return
+     * @return error messages
      */
     public Set<String> getErrors() {
         return errors;
@@ -54,9 +52,7 @@ public class ProvenanceResultsDTO {
     }
 
     /**
-     * The provenance events that matched the search criteria.
-     *
-     * @return
+     * @return provenance events that matched the search criteria
      */
     public List<ProvenanceEventDTO> getProvenanceEvents() {
         return provenanceEvents;
@@ -67,9 +63,7 @@ public class ProvenanceResultsDTO {
     }
 
     /**
-     * The total number of results formatted.
-     *
-     * @return
+     * @return total number of results formatted
      */
     public String getTotal() {
         return total;
@@ -80,9 +74,7 @@ public class ProvenanceResultsDTO {
     }
 
     /**
-     * The total number of results.
-     *
-     * @return
+     * @return total number of results
      */
     public Long getTotalCount() {
         return totalCount;
@@ -93,9 +85,7 @@ public class ProvenanceResultsDTO {
     }
 
     /**
-     * When the search was performed.
-     *
-     * @return
+     * @return when the search was performed
      */
     @XmlJavaTypeAdapter(TimeAdapter.class)
     public Date getGenerated() {
@@ -107,9 +97,7 @@ public class ProvenanceResultsDTO {
     }
 
     /**
-     * The oldest event available in the provenance repository.
-     *
-     * @return
+     * @return oldest event available in the provenance repository
      */
     @XmlJavaTypeAdapter(DateTimeAdapter.class)
     public Date getOldestEvent() {
@@ -121,9 +109,7 @@ public class ProvenanceResultsDTO {
     }
 
     /**
-     * The time offset on the server thats used for event time.
-     *
-     * @return
+     * @return time offset on the server thats used for event time
      */
     public Integer getTimeOffset() {
         return timeOffset;

http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/9faaef8c/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/provenance/ProvenanceSearchableFieldDTO.java
----------------------------------------------------------------------
diff --git a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/provenance/ProvenanceSearchableFieldDTO.java b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/provenance/ProvenanceSearchableFieldDTO.java
index af89f97..97300f6 100644
--- a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/provenance/ProvenanceSearchableFieldDTO.java
+++ b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/provenance/ProvenanceSearchableFieldDTO.java
@@ -30,9 +30,7 @@ public class ProvenanceSearchableFieldDTO {
     private String type;
 
     /**
-     * The id of this searchable field.
-     *
-     * @return
+     * @return id of this searchable field
      */
     public String getId() {
         return id;
@@ -43,9 +41,7 @@ public class ProvenanceSearchableFieldDTO {
     }
 
     /**
-     * The field.
-     *
-     * @return
+     * @return the field
      */
     public String getField() {
         return field;
@@ -56,9 +52,7 @@ public class ProvenanceSearchableFieldDTO {
     }
 
     /**
-     * The label for this field.
-     *
-     * @return
+     * @return label for this field
      */
     public String getLabel() {
         return label;
@@ -69,9 +63,7 @@ public class ProvenanceSearchableFieldDTO {
     }
 
     /**
-     * The type for this field.
-     *
-     * @return
+     * @return type of this field
      */
     public String getType() {
         return type;

http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/9faaef8c/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/provenance/lineage/LineageDTO.java
----------------------------------------------------------------------
diff --git a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/provenance/lineage/LineageDTO.java b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/provenance/lineage/LineageDTO.java
index 745105e..0ef8aab 100644
--- a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/provenance/lineage/LineageDTO.java
+++ b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/provenance/lineage/LineageDTO.java
@@ -40,9 +40,7 @@ public class LineageDTO {
     private LineageResultsDTO results;
 
     /**
-     * The id of this lineage.
-     *
-     * @return
+     * @return id of this lineage
      */
     public String getId() {
         return id;
@@ -53,9 +51,7 @@ public class LineageDTO {
     }
 
     /**
-     * The uri for this lineage.
-     *
-     * @return
+     * @return uri for this lineage
      */
     public String getUri() {
         return uri;
@@ -66,9 +62,7 @@ public class LineageDTO {
     }
 
     /**
-     * The id of the node in the cluster where this lineage originated.
-     *
-     * @return
+     * @return id of the node in the cluster where this lineage originated
      */
     public String getClusterNodeId() {
         return clusterNodeId;
@@ -79,9 +73,7 @@ public class LineageDTO {
     }
 
     /**
-     * The submission time for this lineage.
-     *
-     * @return
+     * @return submission time for this lineage
      */
     @XmlJavaTypeAdapter(TimestampAdapter.class)
     public Date getSubmissionTime() {
@@ -93,9 +85,7 @@ public class LineageDTO {
     }
 
     /**
-     * The expiration of this lineage.
-     *
-     * @return
+     * @return expiration of this lineage
      */
     @XmlJavaTypeAdapter(TimestampAdapter.class)
     public Date getExpiration() {
@@ -107,9 +97,7 @@ public class LineageDTO {
     }
 
     /**
-     * Percent completed for this result.
-     *
-     * @return
+     * @return percent completed for this result
      */
     public Integer getPercentCompleted() {
         return percentCompleted;
@@ -120,9 +108,7 @@ public class LineageDTO {
     }
 
     /**
-     * Whether or not the request is finished running.
-     *
-     * @return
+     * @return whether or not the request is finished running
      */
     public Boolean getFinished() {
         return finished;
@@ -133,9 +119,7 @@ public class LineageDTO {
     }
 
     /**
-     * The lineage request.
-     *
-     * @return
+     * @return the lineage request
      */
     public LineageRequestDTO getRequest() {
         return request;
@@ -146,9 +130,7 @@ public class LineageDTO {
     }
 
     /**
-     * The results of this lineage.
-     *
-     * @return
+     * @return the results of this lineage
      */
     public LineageResultsDTO getResults() {
         return results;

http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/9faaef8c/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/provenance/lineage/LineageRequestDTO.java
----------------------------------------------------------------------
diff --git a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/provenance/lineage/LineageRequestDTO.java b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/provenance/lineage/LineageRequestDTO.java
index 23cf892..afcea3f 100644
--- a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/provenance/lineage/LineageRequestDTO.java
+++ b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/provenance/lineage/LineageRequestDTO.java
@@ -43,9 +43,7 @@ public class LineageRequestDTO {
     private String uuid;
 
     /**
-     * The event id that was used to generate this lineage.
-     *
-     * @return
+     * @return event id that was used to generate this lineage
      */
     public Long getEventId() {
         return eventId;
@@ -56,13 +54,11 @@ public class LineageRequestDTO {
     }
 
     /**
-     * The type of lineage request. Either 'PARENTS', 'CHILDREN', or 'FLOWFILE'.
+     * @return type of lineage request. Either 'PARENTS', 'CHILDREN', or 'FLOWFILE'.
      * PARENTS will return the lineage for the flowfiles that are parents of the
      * specified event. CHILDREN will return the lineage of for the flowfiles
      * that are children of the specified event. FLOWFILE will return the
      * lineage for the specified flowfile.
-     *
-     * @return
      */
     public LineageRequestType getLineageRequestType() {
         return lineageRequestType;
@@ -73,9 +69,7 @@ public class LineageRequestDTO {
     }
 
     /**
-     * The uuid that was used to generate this lineage.
-     *
-     * @return
+     * @return uuid that was used to generate this lineage
      */
     public String getUuid() {
         return uuid;

http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/9faaef8c/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/provenance/lineage/LineageResultsDTO.java
----------------------------------------------------------------------
diff --git a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/provenance/lineage/LineageResultsDTO.java b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/provenance/lineage/LineageResultsDTO.java
index 77b6e7a..8876e9e 100644
--- a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/provenance/lineage/LineageResultsDTO.java
+++ b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/provenance/lineage/LineageResultsDTO.java
@@ -32,9 +32,7 @@ public class LineageResultsDTO {
     private List<ProvenanceLinkDTO> links;
 
     /**
-     * Any error messages.
-     *
-     * @return
+     * @return any error messages
      */
     public Set<String> getErrors() {
         return errors;
@@ -45,9 +43,7 @@ public class LineageResultsDTO {
     }
 
     /**
-     * The nodes.
-     *
-     * @return
+     * @return the nodes
      */
     public List<ProvenanceNodeDTO> getNodes() {
         return nodes;
@@ -58,9 +54,7 @@ public class LineageResultsDTO {
     }
 
     /**
-     * The links.
-     *
-     * @return
+     * @return the links
      */
     public List<ProvenanceLinkDTO> getLinks() {
         return links;

http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/9faaef8c/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/provenance/lineage/ProvenanceLinkDTO.java
----------------------------------------------------------------------
diff --git a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/provenance/lineage/ProvenanceLinkDTO.java b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/provenance/lineage/ProvenanceLinkDTO.java
index f3bbcef..d002626 100644
--- a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/provenance/lineage/ProvenanceLinkDTO.java
+++ b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/provenance/lineage/ProvenanceLinkDTO.java
@@ -34,9 +34,7 @@ public class ProvenanceLinkDTO {
     private Long millis;
 
     /**
-     * The source node id.
-     *
-     * @return
+     * @return source node id
      */
     public String getSourceId() {
         return sourceId;
@@ -47,9 +45,7 @@ public class ProvenanceLinkDTO {
     }
 
     /**
-     * The target node id.
-     *
-     * @return
+     * @return target node id
      */
     public String getTargetId() {
         return targetId;
@@ -60,9 +56,7 @@ public class ProvenanceLinkDTO {
     }
 
     /**
-     * The flowfile uuid that traversed this link.
-     *
-     * @return
+     * @return flowfile uuid that traversed this link
      */
     public String getFlowFileUuid() {
         return flowFileUuid;
@@ -73,9 +67,7 @@ public class ProvenanceLinkDTO {
     }
 
     /**
-     * The timestamp of this link (based on the destination).
-     *
-     * @return
+     * @return timestamp of this link (based on the destination)
      */
     @XmlJavaTypeAdapter(TimestampAdapter.class)
     public Date getTimestamp() {
@@ -87,9 +79,7 @@ public class ProvenanceLinkDTO {
     }
 
     /**
-     * The number of millis since epoch.
-     *
-     * @return
+     * @return number of millis since epoch
      */
     public Long getMillis() {
         return millis;

http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/9faaef8c/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/provenance/lineage/ProvenanceNodeDTO.java
----------------------------------------------------------------------
diff --git a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/provenance/lineage/ProvenanceNodeDTO.java b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/provenance/lineage/ProvenanceNodeDTO.java
index c15c598..4a7ed9c 100644
--- a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/provenance/lineage/ProvenanceNodeDTO.java
+++ b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/provenance/lineage/ProvenanceNodeDTO.java
@@ -42,9 +42,7 @@ public class ProvenanceNodeDTO {
     private Date timestamp;
 
     /**
-     * The id of the node.
-     *
-     * @return
+     * @return id of the node
      */
     public String getId() {
         return id;
@@ -55,9 +53,7 @@ public class ProvenanceNodeDTO {
     }
 
     /**
-     * The flowfile uuid for this provenance event.
-     *
-     * @return
+     * @return flowfile uuid for this provenance event
      */
     public String getFlowFileUuid() {
         return flowFileUuid;
@@ -68,9 +64,7 @@ public class ProvenanceNodeDTO {
     }
 
     /**
-     * The parent flowfile uuids for this provenance event.
-     *
-     * @return
+     * @return parent flowfile uuids for this provenance event
      */
     public List<String> getParentUuids() {
         return parentUuids;
@@ -81,9 +75,7 @@ public class ProvenanceNodeDTO {
     }
 
     /**
-     * The child flowfile uuids for this provenance event.
-     *
-     * @return
+     * @return child flowfile uuids for this provenance event
      */
     public List<String> getChildUuids() {
         return childUuids;
@@ -94,9 +86,7 @@ public class ProvenanceNodeDTO {
     }
 
     /**
-     * The node identifier that this event/flowfile originated from.
-     *
-     * @return
+     * @return node identifier that this event/flowfile originated from
      */
     public String getClusterNodeIdentifier() {
         return clusterNodeIdentifier;
@@ -107,9 +97,7 @@ public class ProvenanceNodeDTO {
     }
 
     /**
-     * The type of node.
-     *
-     * @return
+     * @return type of node
      */
     public String getType() {
         return type;
@@ -120,9 +108,7 @@ public class ProvenanceNodeDTO {
     }
 
     /**
-     * If this is an event node, this is the type of event.
-     *
-     * @return
+     * @return this is an event node, this is the type of event
      */
     public String getEventType() {
         return eventType;
@@ -133,9 +119,7 @@ public class ProvenanceNodeDTO {
     }
 
     /**
-     * The timestamp of this node.
-     *
-     * @return
+     * @return timestamp of this node
      */
     @XmlJavaTypeAdapter(TimestampAdapter.class)
     public Date getTimestamp() {
@@ -147,9 +131,7 @@ public class ProvenanceNodeDTO {
     }
 
     /**
-     * The number of millis since epoch.
-     *
-     * @return
+     * @return number of millis since epoch
      */
     public Long getMillis() {
         return millis;

http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/9faaef8c/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/search/ComponentSearchResultDTO.java
----------------------------------------------------------------------
diff --git a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/search/ComponentSearchResultDTO.java b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/search/ComponentSearchResultDTO.java
index 83d7a91..01965f9 100644
--- a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/search/ComponentSearchResultDTO.java
+++ b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/search/ComponentSearchResultDTO.java
@@ -31,9 +31,7 @@ public class ComponentSearchResultDTO {
     private List<String> matches;
 
     /**
-     * The id of the component that matched.
-     *
-     * @return
+     * @return id of the component that matched
      */
     public String getId() {
         return id;
@@ -44,9 +42,7 @@ public class ComponentSearchResultDTO {
     }
 
     /**
-     * The group id of the component that matched.
-     *
-     * @return
+     * @return group id of the component that matched
      */
     public String getGroupId() {
         return groupId;
@@ -57,9 +53,7 @@ public class ComponentSearchResultDTO {
     }
 
     /**
-     * The name of the component that matched.
-     *
-     * @return
+     * @return name of the component that matched
      */
     public String getName() {
         return name;
@@ -70,9 +64,7 @@ public class ComponentSearchResultDTO {
     }
 
     /**
-     * What matched the search string for this component.
-     *
-     * @return
+     * @return What matched the search string for this component
      */
     public List<String> getMatches() {
         return matches;

http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/9faaef8c/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/search/NodeSearchResultDTO.java
----------------------------------------------------------------------
diff --git a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/search/NodeSearchResultDTO.java b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/search/NodeSearchResultDTO.java
index 7c250ee..ab78d06 100644
--- a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/search/NodeSearchResultDTO.java
+++ b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/search/NodeSearchResultDTO.java
@@ -28,9 +28,7 @@ public class NodeSearchResultDTO {
     private String address;
 
     /**
-     * The id of the node that was matched.
-     *
-     * @return
+     * @return id of the node that was matched
      */
     public String getId() {
         return id;
@@ -41,9 +39,7 @@ public class NodeSearchResultDTO {
     }
 
     /**
-     * The address of the node that was matched.
-     *
-     * @return
+     * @return address of the node that was matched
      */
     public String getAddress() {
         return address;

http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/9faaef8c/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/search/SearchResultsDTO.java
----------------------------------------------------------------------
diff --git a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/search/SearchResultsDTO.java b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/search/SearchResultsDTO.java
index 212d4f2..0319916 100644
--- a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/search/SearchResultsDTO.java
+++ b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/search/SearchResultsDTO.java
@@ -35,9 +35,7 @@ public class SearchResultsDTO {
     private List<ComponentSearchResultDTO> funnelResults = new ArrayList<>();
 
     /**
-     * The processors that matched the search.
-     *
-     * @return
+     * @return The processors that matched the search
      */
     public List<ComponentSearchResultDTO> getProcessorResults() {
         return processorResults;
@@ -48,9 +46,7 @@ public class SearchResultsDTO {
     }
 
     /**
-     * The connections that matched the search.
-     *
-     * @return
+     * @return connections that matched the search
      */
     public List<ComponentSearchResultDTO> getConnectionResults() {
         return connectionResults;
@@ -61,9 +57,7 @@ public class SearchResultsDTO {
     }
 
     /**
-     * The process group that matched the search.
-     *
-     * @return
+     * @return process group that matched the search
      */
     public List<ComponentSearchResultDTO> getProcessGroupResults() {
         return processGroupResults;
@@ -74,18 +68,14 @@ public class SearchResultsDTO {
     }
 
     /**
-     * The input ports that matched the search.
-     *
-     * @return
+     * @return input ports that matched the search
      */
     public List<ComponentSearchResultDTO> getInputPortResults() {
         return inputPortResults;
     }
 
     /**
-     * The output ports that matched the search.
-     *
-     * @return
+     * @return output ports that matched the search
      */
     public List<ComponentSearchResultDTO> getOutputPortResults() {
         return outputPortResults;
@@ -100,9 +90,7 @@ public class SearchResultsDTO {
     }
 
     /**
-     * The remote process groups that matched the search.
-     *
-     * @return
+     * @return remote process groups that matched the search
      */
     public List<ComponentSearchResultDTO> getRemoteProcessGroupResults() {
         return remoteProcessGroupResults;
@@ -113,9 +101,7 @@ public class SearchResultsDTO {
     }
 
     /**
-     * The funnels that matched the search.
-     *
-     * @return
+     * @return funnels that matched the search
      */
     public List<ComponentSearchResultDTO> getFunnelResults() {
         return funnelResults;

http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/9faaef8c/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/search/UserGroupSearchResultDTO.java
----------------------------------------------------------------------
diff --git a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/search/UserGroupSearchResultDTO.java b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/search/UserGroupSearchResultDTO.java
index ab5636d..863ba3a 100644
--- a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/search/UserGroupSearchResultDTO.java
+++ b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/search/UserGroupSearchResultDTO.java
@@ -27,9 +27,7 @@ public class UserGroupSearchResultDTO {
     private String group;
 
     /**
-     * The name of the group that matched.
-     *
-     * @return
+     * @return name of the group that matched
      */
     public String getGroup() {
         return group;

http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/9faaef8c/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/search/UserSearchResultDTO.java
----------------------------------------------------------------------
diff --git a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/search/UserSearchResultDTO.java b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/search/UserSearchResultDTO.java
index 9402eeb..b68ab0f 100644
--- a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/search/UserSearchResultDTO.java
+++ b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/search/UserSearchResultDTO.java
@@ -28,9 +28,7 @@ public class UserSearchResultDTO {
     private String userDn;
 
     /**
-     * The dn of the user that matched.
-     *
-     * @return
+     * @return dn of the user that matched
      */
     public String getUserDn() {
         return userDn;
@@ -41,9 +39,7 @@ public class UserSearchResultDTO {
     }
 
     /**
-     * The username of user that matched.
-     *
-     * @return
+     * @return username of user that matched
      */
     public String getUserName() {
         return userName;

http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/9faaef8c/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/ClusterConnectionStatusDTO.java
----------------------------------------------------------------------
diff --git a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/ClusterConnectionStatusDTO.java b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/ClusterConnectionStatusDTO.java
index f0e11d6..248729e 100644
--- a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/ClusterConnectionStatusDTO.java
+++ b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/ClusterConnectionStatusDTO.java
@@ -34,9 +34,7 @@ public class ClusterConnectionStatusDTO {
     private String connectionName;
 
     /**
-     * The time the status were last refreshed.
-     *
-     * @return
+     * @return time the status were last refreshed
      */
     @XmlJavaTypeAdapter(TimeAdapter.class)
     public Date getStatsLastRefreshed() {
@@ -48,9 +46,7 @@ public class ClusterConnectionStatusDTO {
     }
 
     /**
-     * The connection id.
-     *
-     * @return
+     * @return connection id
      */
     public String getConnectionId() {
         return connectionId;
@@ -61,9 +57,7 @@ public class ClusterConnectionStatusDTO {
     }
 
     /**
-     * The connection name.
-     *
-     * @return
+     * @return connection name
      */
     public String getConnectionName() {
         return connectionName;
@@ -74,8 +68,6 @@ public class ClusterConnectionStatusDTO {
     }
 
     /**
-     * Collection of node connection status DTO.
-     *
      * @return The collection of node connection status DTO
      */
     public Collection<NodeConnectionStatusDTO> getNodeConnectionStatus() {

http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/9faaef8c/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/ClusterPortStatusDTO.java
----------------------------------------------------------------------
diff --git a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/ClusterPortStatusDTO.java b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/ClusterPortStatusDTO.java
index 4d7fa4d..ca4ef07 100644
--- a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/ClusterPortStatusDTO.java
+++ b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/ClusterPortStatusDTO.java
@@ -34,8 +34,6 @@ public class ClusterPortStatusDTO {
     private String portName;
 
     /**
-     * The time the status was last refreshed.
-     *
      * @return the time the status were last refreshed
      */
     @XmlJavaTypeAdapter(TimeAdapter.class)
@@ -48,9 +46,7 @@ public class ClusterPortStatusDTO {
     }
 
     /**
-     * The port status from each node in the cluster.
-     *
-     * @return
+     * @return port status from each node in the cluster
      */
     public Collection<NodePortStatusDTO> getNodePortStatus() {
         return nodePortStatus;
@@ -61,9 +57,7 @@ public class ClusterPortStatusDTO {
     }
 
     /**
-     * The port id.
-     *
-     * @return
+     * @return port id
      */
     public String getPortId() {
         return portId;
@@ -74,9 +68,7 @@ public class ClusterPortStatusDTO {
     }
 
     /**
-     * The port name.
-     *
-     * @return
+     * @return port name
      */
     public String getPortName() {
         return portName;

http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/9faaef8c/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/ClusterProcessorStatusDTO.java
----------------------------------------------------------------------
diff --git a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/ClusterProcessorStatusDTO.java b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/ClusterProcessorStatusDTO.java
index b9f45f2..8d78b1f 100644
--- a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/ClusterProcessorStatusDTO.java
+++ b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/ClusterProcessorStatusDTO.java
@@ -36,9 +36,7 @@ public class ClusterProcessorStatusDTO {
     private String processorRunStatus;
 
     /**
-     * The time the status were last refreshed.
-     *
-     * @return
+     * @return time the status were last refreshed
      */
     @XmlJavaTypeAdapter(TimeAdapter.class)
     public Date getStatsLastRefreshed() {
@@ -50,9 +48,7 @@ public class ClusterProcessorStatusDTO {
     }
 
     /**
-     * The processor id.
-     *
-     * @return
+     * @return processor id
      */
     public String getProcessorId() {
         return processorId;
@@ -63,9 +59,7 @@ public class ClusterProcessorStatusDTO {
     }
 
     /**
-     * The processor name.
-     *
-     * @return
+     * @return processor name
      */
     public String getProcessorName() {
         return processorName;
@@ -76,9 +70,7 @@ public class ClusterProcessorStatusDTO {
     }
 
     /**
-     * The processor type.
-     *
-     * @return
+     * @return processor type
      */
     public String getProcessorType() {
         return processorType;
@@ -89,9 +81,7 @@ public class ClusterProcessorStatusDTO {
     }
 
     /**
-     * The processor run status.
-     *
-     * @return
+     * @return processor run status
      */
     public String getProcessorRunStatus() {
         return processorRunStatus;

http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/9faaef8c/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/ClusterRemoteProcessGroupStatusDTO.java
----------------------------------------------------------------------
diff --git a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/ClusterRemoteProcessGroupStatusDTO.java b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/ClusterRemoteProcessGroupStatusDTO.java
index d6b26d4..027bf4f 100644
--- a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/ClusterRemoteProcessGroupStatusDTO.java
+++ b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/ClusterRemoteProcessGroupStatusDTO.java
@@ -34,8 +34,6 @@ public class ClusterRemoteProcessGroupStatusDTO {
     private String remoteProcessGroupName;
 
     /**
-     * The time the status was last refreshed.
-     *
      * @return the time the status were last refreshed
      */
     @XmlJavaTypeAdapter(TimeAdapter.class)
@@ -48,9 +46,7 @@ public class ClusterRemoteProcessGroupStatusDTO {
     }
 
     /**
-     * The remote process group status from each node in the cluster.
-     *
-     * @return
+     * @return remote process group status from each node in the cluster
      */
     public Collection<NodeRemoteProcessGroupStatusDTO> getNodeRemoteProcessGroupStatus() {
         return nodeRemoteProcessGroupStatus;
@@ -61,9 +57,7 @@ public class ClusterRemoteProcessGroupStatusDTO {
     }
 
     /**
-     * The remote process group id.
-     *
-     * @return
+     * @return remote process group id
      */
     public String getRemoteProcessGroupId() {
         return remoteProcessGroupId;
@@ -74,9 +68,7 @@ public class ClusterRemoteProcessGroupStatusDTO {
     }
 
     /**
-     * The remote process group name.
-     *
-     * @return
+     * @return remote process group name
      */
     public String getRemoteProcessGroupName() {
         return remoteProcessGroupName;

http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/9faaef8c/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/ClusterStatusDTO.java
----------------------------------------------------------------------
diff --git a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/ClusterStatusDTO.java b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/ClusterStatusDTO.java
index d833991..e170c8b 100644
--- a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/ClusterStatusDTO.java
+++ b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/ClusterStatusDTO.java
@@ -29,9 +29,7 @@ public class ClusterStatusDTO {
     private Collection<NodeStatusDTO> nodeStatus;
 
     /**
-     * The collection of the node status DTOs.
-     *
-     * @return
+     * @return collection of the node status DTOs
      */
     public Collection<NodeStatusDTO> getNodeStatus() {
         return nodeStatus;

http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/9faaef8c/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/ClusterStatusHistoryDTO.java
----------------------------------------------------------------------
diff --git a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/ClusterStatusHistoryDTO.java b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/ClusterStatusHistoryDTO.java
index 31a9948..a22c872 100644
--- a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/ClusterStatusHistoryDTO.java
+++ b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/ClusterStatusHistoryDTO.java
@@ -33,9 +33,7 @@ public class ClusterStatusHistoryDTO {
     private Date generated;
 
     /**
-     * When this status history was generated.
-     *
-     * @return
+     * @return when this status history was generated
      */
     @XmlJavaTypeAdapter(TimeAdapter.class)
     public Date getGenerated() {
@@ -47,9 +45,7 @@ public class ClusterStatusHistoryDTO {
     }
 
     /**
-     * The status history from each node in the cluster.
-     *
-     * @return
+     * @return status history from each node in the cluster
      */
     public Collection<NodeStatusHistoryDTO> getNodeStatusHistory() {
         return nodeStatusHistory;
@@ -60,9 +56,7 @@ public class ClusterStatusHistoryDTO {
     }
 
     /**
-     * The status history for this component across the entire cluster.
-     *
-     * @return
+     * @return status history for this component across the entire cluster
      */
     public StatusHistoryDTO getClusterStatusHistory() {
         return clusterStatusHistory;

http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/9faaef8c/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/ConnectionStatusDTO.java
----------------------------------------------------------------------
diff --git a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/ConnectionStatusDTO.java b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/ConnectionStatusDTO.java
index 387cce5..2abc6ff 100644
--- a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/ConnectionStatusDTO.java
+++ b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/ConnectionStatusDTO.java
@@ -40,8 +40,6 @@ public class ConnectionStatusDTO {
 
     /* getters / setters */
     /**
-     * The id for the connection.
-     *
      * @return The connection id
      */
     public String getId() {
@@ -53,8 +51,6 @@ public class ConnectionStatusDTO {
     }
 
     /**
-     * The ID of the Process Group to which this processor belongs.
-     *
      * @return the ID of the Process Group to which this processor belongs.
      */
     public String getGroupId() {
@@ -66,9 +62,7 @@ public class ConnectionStatusDTO {
     }
 
     /**
-     * The name of this connection.
-     *
-     * @return
+     * @return name of this connection
      */
     public String getName() {
         return name;
@@ -79,9 +73,7 @@ public class ConnectionStatusDTO {
     }
 
     /**
-     * The total count of flow files that are queued.
-     *
-     * @return
+     * @return total count of flow files that are queued
      */
     public String getQueuedCount() {
         return queuedCount;
@@ -92,9 +84,7 @@ public class ConnectionStatusDTO {
     }
 
     /**
-     * The total size of flow files that are queued.
-     *
-     * @return
+     * @return total size of flow files that are queued
      */
     public String getQueuedSize() {
         return queuedSize;
@@ -105,8 +95,6 @@ public class ConnectionStatusDTO {
     }
 
     /**
-     * The total count and size of flow files that are queued.
-     *
      * @return The total count and size of queued flow files
      */
     public String getQueued() {
@@ -118,9 +106,7 @@ public class ConnectionStatusDTO {
     }
 
     /**
-     * The id of the source of this connection.
-     *
-     * @return
+     * @return id of the source of this connection
      */
     public String getSourceId() {
         return sourceId;
@@ -131,9 +117,7 @@ public class ConnectionStatusDTO {
     }
 
     /**
-     * The name of the source of this connection.
-     *
-     * @return
+     * @return name of the source of this connection
      */
     public String getSourceName() {
         return sourceName;
@@ -144,9 +128,7 @@ public class ConnectionStatusDTO {
     }
 
     /**
-     * The id of the destination of this connection.
-     *
-     * @return
+     * @return id of the destination of this connection
      */
     public String getDestinationId() {
         return destinationId;
@@ -157,9 +139,7 @@ public class ConnectionStatusDTO {
     }
 
     /**
-     * The name of the destination of this connection.
-     *
-     * @return
+     * @return name of the destination of this connection
      */
     public String getDestinationName() {
         return destinationName;
@@ -170,9 +150,7 @@ public class ConnectionStatusDTO {
     }
 
     /**
-     * The input for this connection.
-     *
-     * @return
+     * @return input for this connection
      */
     public String getInput() {
         return input;
@@ -183,9 +161,7 @@ public class ConnectionStatusDTO {
     }
 
     /**
-     * The output for this connection.
-     *
-     * @return
+     * @return output for this connection
      */
     public String getOutput() {
         return output;

http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/9faaef8c/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/ControllerStatusDTO.java
----------------------------------------------------------------------
diff --git a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/ControllerStatusDTO.java b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/ControllerStatusDTO.java
index 9e063e4..adfee2a 100644
--- a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/ControllerStatusDTO.java
+++ b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/ControllerStatusDTO.java
@@ -54,9 +54,7 @@ public class ControllerStatusDTO {
     }
 
     /**
-     * The queue for the controller.
-     *
-     * @return
+     * @return queue for the controller
      */
     public String getQueued() {
         return queued;
@@ -67,10 +65,8 @@ public class ControllerStatusDTO {
     }
 
     /**
-     * Used in clustering, will report the number of nodes connected vs the
-     * number of nodes in the cluster.
-     *
-     * @return
+     * @return Used in clustering, will report the number of nodes connected vs the
+     * number of nodes in the cluster
      */
     public String getConnectedNodes() {
         return connectedNodes;
@@ -81,9 +77,7 @@ public class ControllerStatusDTO {
     }
 
     /**
-     * System bulletins to be reported to the user.
-     *
-     * @return
+     * @return System bulletins to be reported to the user
      */
     public List<BulletinDTO> getBulletins() {
         return bulletins;
@@ -94,9 +88,7 @@ public class ControllerStatusDTO {
     }
 
     /**
-     * Whether or not there are pending user requests.
-     *
-     * @return
+     * @return whether or not there are pending user requests
      */
     public Boolean getHasPendingAccounts() {
         return hasPendingAccounts;
@@ -107,9 +99,7 @@ public class ControllerStatusDTO {
     }
 
     /**
-     * The number of running components in this controller.
-     *
-     * @return
+     * @return number of running components in this controller
      */
     public Integer getRunningCount() {
         return runningCount;
@@ -120,9 +110,7 @@ public class ControllerStatusDTO {
     }
 
     /**
-     * The number of stopped components in this controller.
-     *
-     * @return
+     * @return number of stopped components in this controller
      */
     public Integer getStoppedCount() {
         return stoppedCount;
@@ -133,9 +121,7 @@ public class ControllerStatusDTO {
     }
 
     /**
-     * The number of invalid components in this controller.
-     *
-     * @return
+     * @return number of invalid components in this controller
      */
     public Integer getInvalidCount() {
         return invalidCount;
@@ -146,9 +132,7 @@ public class ControllerStatusDTO {
     }
 
     /**
-     * The number of disabled components in this controller.
-     *
-     * @return
+     * @return number of disabled components in this controller
      */
     public Integer getDisabledCount() {
         return disabledCount;
@@ -159,9 +143,7 @@ public class ControllerStatusDTO {
     }
 
     /**
-     * The number of active remote ports in this controller.
-     *
-     * @return
+     * @return number of active remote ports in this controller
      */
     public Integer getActiveRemotePortCount() {
         return activeRemotePortCount;
@@ -172,9 +154,7 @@ public class ControllerStatusDTO {
     }
 
     /**
-     * The number of inactive remote ports in this controller.
-     *
-     * @return
+     * @return number of inactive remote ports in this controller
      */
     public Integer getInactiveRemotePortCount() {
         return inactiveRemotePortCount;

http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/9faaef8c/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/NodeConnectionStatusDTO.java
----------------------------------------------------------------------
diff --git a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/NodeConnectionStatusDTO.java b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/NodeConnectionStatusDTO.java
index f7cba44..39fb5ce 100644
--- a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/NodeConnectionStatusDTO.java
+++ b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/NodeConnectionStatusDTO.java
@@ -29,9 +29,7 @@ public class NodeConnectionStatusDTO {
     private ConnectionStatusDTO connectionStatus;
 
     /**
-     * The node.
-     *
-     * @return
+     * @return the node
      */
     public NodeDTO getNode() {
         return node;
@@ -42,9 +40,7 @@ public class NodeConnectionStatusDTO {
     }
 
     /**
-     * The connection's status.
-     *
-     * @return
+     * @return connection's status
      */
     public ConnectionStatusDTO getConnectionStatus() {
         return connectionStatus;

http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/9faaef8c/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/NodePortStatusDTO.java
----------------------------------------------------------------------
diff --git a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/NodePortStatusDTO.java b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/NodePortStatusDTO.java
index 93d89ac..91a6d01 100644
--- a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/NodePortStatusDTO.java
+++ b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/NodePortStatusDTO.java
@@ -29,9 +29,7 @@ public class NodePortStatusDTO {
     private PortStatusDTO portStatus;
 
     /**
-     * The node.
-     *
-     * @return
+     * @return the node
      */
     public NodeDTO getNode() {
         return node;
@@ -42,9 +40,7 @@ public class NodePortStatusDTO {
     }
 
     /**
-     * The port's status.
-     *
-     * @return
+     * @return port status
      */
     public PortStatusDTO getPortStatus() {
         return portStatus;

http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/9faaef8c/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/NodeProcessorStatusDTO.java
----------------------------------------------------------------------
diff --git a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/NodeProcessorStatusDTO.java b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/NodeProcessorStatusDTO.java
index afff4b1..86d13d5 100644
--- a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/NodeProcessorStatusDTO.java
+++ b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/NodeProcessorStatusDTO.java
@@ -29,9 +29,7 @@ public class NodeProcessorStatusDTO {
     private ProcessorStatusDTO processorStatus;
 
     /**
-     * The node.
-     *
-     * @return
+     * @return the node
      */
     public NodeDTO getNode() {
         return node;
@@ -42,9 +40,7 @@ public class NodeProcessorStatusDTO {
     }
 
     /**
-     * The processor's status.
-     *
-     * @return
+     * @return processor's status
      */
     public ProcessorStatusDTO getProcessorStatus() {
         return processorStatus;

http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/9faaef8c/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/NodeRemoteProcessGroupStatusDTO.java
----------------------------------------------------------------------
diff --git a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/NodeRemoteProcessGroupStatusDTO.java b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/NodeRemoteProcessGroupStatusDTO.java
index 03923bf..12a0ca0 100644
--- a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/NodeRemoteProcessGroupStatusDTO.java
+++ b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/NodeRemoteProcessGroupStatusDTO.java
@@ -29,9 +29,7 @@ public class NodeRemoteProcessGroupStatusDTO {
     private RemoteProcessGroupStatusDTO remoteProcessGroupStatus;
 
     /**
-     * The node.
-     *
-     * @return
+     * @return the node
      */
     public NodeDTO getNode() {
         return node;
@@ -42,9 +40,7 @@ public class NodeRemoteProcessGroupStatusDTO {
     }
 
     /**
-     * The remote process group's status.
-     *
-     * @return
+     * @return remote process group's status
      */
     public RemoteProcessGroupStatusDTO getRemoteProcessGroupStatus() {
         return remoteProcessGroupStatus;

http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/9faaef8c/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/NodeStatusDTO.java
----------------------------------------------------------------------
diff --git a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/NodeStatusDTO.java b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/NodeStatusDTO.java
index 03647cd..b770015 100644
--- a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/NodeStatusDTO.java
+++ b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/NodeStatusDTO.java
@@ -29,9 +29,7 @@ public class NodeStatusDTO {
     private ProcessGroupStatusDTO controllerStatus;
 
     /**
-     * The node.
-     *
-     * @return
+     * @return the node
      */
     public NodeDTO getNode() {
         return node;
@@ -42,9 +40,7 @@ public class NodeStatusDTO {
     }
 
     /**
-     * The controller status.
-     *
-     * @return
+     * @return the controller status
      */
     public ProcessGroupStatusDTO getControllerStatus() {
         return controllerStatus;

http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/9faaef8c/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/NodeStatusHistoryDTO.java
----------------------------------------------------------------------
diff --git a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/NodeStatusHistoryDTO.java b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/NodeStatusHistoryDTO.java
index c8b05f3..9a7cb16 100644
--- a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/NodeStatusHistoryDTO.java
+++ b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/NodeStatusHistoryDTO.java
@@ -29,9 +29,7 @@ public class NodeStatusHistoryDTO {
     private StatusHistoryDTO statusHistory;
 
     /**
-     * The node.
-     *
-     * @return
+     * @return the node
      */
     public NodeDTO getNode() {
         return node;
@@ -42,9 +40,7 @@ public class NodeStatusHistoryDTO {
     }
 
     /**
-     * The processor status history.
-     *
-     * @return
+     * @return processor status history
      */
     public StatusHistoryDTO getStatusHistory() {
         return statusHistory;

http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/9faaef8c/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/PortStatusDTO.java
----------------------------------------------------------------------
diff --git a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/PortStatusDTO.java b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/PortStatusDTO.java
index c32efdb..db03146 100644
--- a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/PortStatusDTO.java
+++ b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/PortStatusDTO.java
@@ -34,9 +34,7 @@ public class PortStatusDTO extends StatusDTO {
     private String runStatus;
 
     /**
-     * Whether this port has incoming or outgoing connections to a remote NiFi.
-     *
-     * @return
+     * @return whether this port has incoming or outgoing connections to a remote NiFi
      */
     public Boolean isTransmitting() {
         return transmitting;
@@ -47,9 +45,7 @@ public class PortStatusDTO extends StatusDTO {
     }
 
     /**
-     * The active thread count for this port.
-     *
-     * @return
+     * @return the active thread count for this port
      */
     public Integer getActiveThreadCount() {
         return activeThreadCount;
@@ -60,9 +56,7 @@ public class PortStatusDTO extends StatusDTO {
     }
 
     /**
-     * The id of this port.
-     *
-     * @return
+     * @return id of this port
      */
     public String getId() {
         return id;
@@ -73,9 +67,7 @@ public class PortStatusDTO extends StatusDTO {
     }
 
     /**
-     * The id of the group this port resides in.
-     *
-     * @return
+     * @return id of the group this port resides in
      */
     public String getGroupId() {
         return groupId;
@@ -86,9 +78,7 @@ public class PortStatusDTO extends StatusDTO {
     }
 
     /**
-     * The name of this port.
-     *
-     * @return
+     * @return name of this port
      */
     public String getName() {
         return name;
@@ -99,9 +89,7 @@ public class PortStatusDTO extends StatusDTO {
     }
 
     /**
-     * The run status of this port.
-     *
-     * @return
+     * @return run status of this port
      */
     public String getRunStatus() {
         return runStatus;
@@ -112,10 +100,8 @@ public class PortStatusDTO extends StatusDTO {
     }
 
     /**
-     * The total count and size of flow files that have been accepted in the
-     * last five minutes.
-     *
-     * @return The total processed
+     * @return The total count and size of flow files that have been accepted in the
+     * last five minutes
      */
     public String getInput() {
         return input;
@@ -126,10 +112,8 @@ public class PortStatusDTO extends StatusDTO {
     }
 
     /**
-     * The total count and size of flow files that have been processed in the
-     * last five minutes.
-     *
-     * @return The total output
+     * @return The total count and size of flow files that have been processed in the
+     * last five minutes
      */
     public String getOutput() {
         return output;

http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/9faaef8c/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/ProcessGroupStatusDTO.java
----------------------------------------------------------------------
diff --git a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/ProcessGroupStatusDTO.java b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/ProcessGroupStatusDTO.java
index 4fa2b64..2193fb0 100644
--- a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/ProcessGroupStatusDTO.java
+++ b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/status/ProcessGroupStatusDTO.java
@@ -59,9 +59,7 @@ public class ProcessGroupStatusDTO extends StatusDTO {
     }
 
     /**
-     * The name of this process group.
-     *
-     * @return
+     * @return name of this process group
      */
     public String getName() {
         return name;
@@ -72,9 +70,7 @@ public class ProcessGroupStatusDTO extends StatusDTO {
     }
 
     /**
-     * The active thread count for this process group.
-     *
-     * @return
+     * @return active thread count for this process group
      */
     public Integer getActiveThreadCount() {
         return activeThreadCount;