NIFI-292:
- Checkstyle clean up.

Project: http://git-wip-us.apache.org/repos/asf/incubator-nifi/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-nifi/commit/46e691dd
Tree: http://git-wip-us.apache.org/repos/asf/incubator-nifi/tree/46e691dd
Diff: http://git-wip-us.apache.org/repos/asf/incubator-nifi/diff/46e691dd

Branch: refs/heads/NIFI-292
Commit: 46e691dd5b1bcddabf19321f398e17651edc4ea6
Parents: 5f2bd4f
Author: Matt Gilman <[email protected]>
Authored: Tue Apr 28 10:04:16 2015 -0400
Committer: Matt Gilman <[email protected]>
Committed: Tue Apr 28 10:04:16 2015 -0400

----------------------------------------------------------------------
 .../nifi/web/api/BulletinBoardResource.java     |  1 -
 .../apache/nifi/web/api/ClusterResource.java    | 63 ++++----------
 .../apache/nifi/web/api/ConnectionResource.java | 60 ++++----------
 .../apache/nifi/web/api/ControllerResource.java | 86 ++++++--------------
 4 files changed, 56 insertions(+), 154 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/46e691dd/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-api/src/main/java/org/apache/nifi/web/api/BulletinBoardResource.java
----------------------------------------------------------------------
diff --git 
a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-api/src/main/java/org/apache/nifi/web/api/BulletinBoardResource.java
 
b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-api/src/main/java/org/apache/nifi/web/api/BulletinBoardResource.java
index d496ed7..6cc1c8a 100644
--- 
a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-api/src/main/java/org/apache/nifi/web/api/BulletinBoardResource.java
+++ 
b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-api/src/main/java/org/apache/nifi/web/api/BulletinBoardResource.java
@@ -20,7 +20,6 @@ import com.wordnik.swagger.annotations.Api;
 import javax.ws.rs.Consumes;
 import javax.ws.rs.DefaultValue;
 import javax.ws.rs.GET;
-import javax.ws.rs.Path;
 import javax.ws.rs.Produces;
 import javax.ws.rs.QueryParam;
 import javax.ws.rs.core.MediaType;

http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/46e691dd/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-api/src/main/java/org/apache/nifi/web/api/ClusterResource.java
----------------------------------------------------------------------
diff --git 
a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-api/src/main/java/org/apache/nifi/web/api/ClusterResource.java
 
b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-api/src/main/java/org/apache/nifi/web/api/ClusterResource.java
index 3572b7a..005a4a2 100644
--- 
a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-api/src/main/java/org/apache/nifi/web/api/ClusterResource.java
+++ 
b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-api/src/main/java/org/apache/nifi/web/api/ClusterResource.java
@@ -111,9 +111,7 @@ public class ClusterResource extends ApplicationResource {
     /**
      * Gets the status of this NiFi cluster.
      *
-     * @param clientId Optional client id. If the client id is not specified, a
-     * new one will be generated. This value (whether specified or generated) 
is
-     * included in the response.
+     * @param clientId Optional client id. If the client id is not specified, 
a new one will be generated. This value (whether specified or generated) is 
included in the response.
      * @return A clusterStatusEntity
      */
     @GET
@@ -184,12 +182,9 @@ public class ClusterResource extends ApplicationResource {
     }
 
     /**
-     * Gets the contents of this NiFi cluster. This includes all nodes and 
their
-     * status.
+     * Gets the contents of this NiFi cluster. This includes all nodes and 
their status.
      *
-     * @param clientId Optional client id. If the client id is not specified, a
-     * new one will be generated. This value (whether specified or generated) 
is
-     * included in the response.
+     * @param clientId Optional client id. If the client id is not specified, 
a new one will be generated. This value (whether specified or generated) is 
included in the response.
      * @return A clusterEntity
      */
     @GET
@@ -319,9 +314,7 @@ public class ClusterResource extends ApplicationResource {
     /**
      * Gets the processor.
      *
-     * @param clientId Optional client id. If the client id is not specified, a
-     * new one will be generated. This value (whether specified or generated) 
is
-     * included in the response.
+     * @param clientId Optional client id. If the client id is not specified, 
a new one will be generated. This value (whether specified or generated) is 
included in the response.
      * @param id The id of the processor
      * @return A processorEntity
      */
@@ -385,11 +378,8 @@ public class ClusterResource extends ApplicationResource {
      * Updates the processors annotation data.
      *
      * @param httpServletRequest request
-     * @param version The revision is used to verify the client is working with
-     * the latest version of the flow.
-     * @param clientId Optional client id. If the client id is not specified, a
-     * new one will be generated. This value (whether specified or generated) 
is
-     * included in the response.
+     * @param version The revision is used to verify the client is working 
with the latest version of the flow.
+     * @param clientId Optional client id. If the client id is not specified, 
a new one will be generated. This value (whether specified or generated) is 
included in the response.
      * @param processorId The id of the processor.
      * @param annotationData The annotation data to set.
      * @return A processorEntity.
@@ -539,9 +529,7 @@ public class ClusterResource extends ApplicationResource {
     /**
      * Gets the processor status for every node.
      *
-     * @param clientId Optional client id. If the client id is not specified, a
-     * new one will be generated. This value (whether specified or generated) 
is
-     * included in the response.
+     * @param clientId Optional client id. If the client id is not specified, 
a new one will be generated. This value (whether specified or generated) is 
included in the response.
      * @param id The id of the processor
      * @return A clusterProcessorStatusEntity
      */
@@ -604,9 +592,7 @@ public class ClusterResource extends ApplicationResource {
     /**
      * Gets the processor status history for every node.
      *
-     * @param clientId Optional client id. If the client id is not specified, a
-     * new one will be generated. This value (whether specified or generated) 
is
-     * included in the response.
+     * @param clientId Optional client id. If the client id is not specified, 
a new one will be generated. This value (whether specified or generated) is 
included in the response.
      * @param id The id of the processor
      * @return A clusterProcessorStatusHistoryEntity
      */
@@ -668,9 +654,7 @@ public class ClusterResource extends ApplicationResource {
     /**
      * Gets the connection status for every node.
      *
-     * @param clientId Optional client id. If the client id is not specified, a
-     * new one will be generated. This value (whether specified or generated) 
is
-     * included in the response.
+     * @param clientId Optional client id. If the client id is not specified, 
a new one will be generated. This value (whether specified or generated) is 
included in the response.
      * @param id The id of the processor
      * @return A clusterProcessorStatusEntity
      */
@@ -733,9 +717,7 @@ public class ClusterResource extends ApplicationResource {
     /**
      * Gets the connections status history for every node.
      *
-     * @param clientId Optional client id. If the client id is not specified, a
-     * new one will be generated. This value (whether specified or generated) 
is
-     * included in the response.
+     * @param clientId Optional client id. If the client id is not specified, 
a new one will be generated. This value (whether specified or generated) is 
included in the response.
      * @param id The id of the processor
      * @return A clusterProcessorStatusHistoryEntity
      */
@@ -797,9 +779,7 @@ public class ClusterResource extends ApplicationResource {
     /**
      * Gets the process group status for every node.
      *
-     * @param clientId Optional client id. If the client id is not specified, a
-     * new one will be generated. This value (whether specified or generated) 
is
-     * included in the response.
+     * @param clientId Optional client id. If the client id is not specified, 
a new one will be generated. This value (whether specified or generated) is 
included in the response.
      * @param id The id of the process group
      * @return A clusterProcessGroupStatusEntity
      */
@@ -862,9 +842,7 @@ public class ClusterResource extends ApplicationResource {
     /**
      * Gets the process group status history for every node.
      *
-     * @param clientId Optional client id. If the client id is not specified, a
-     * new one will be generated. This value (whether specified or generated) 
is
-     * included in the response.
+     * @param clientId Optional client id. If the client id is not specified, 
a new one will be generated. This value (whether specified or generated) is 
included in the response.
      * @param id The id of the process group
      * @return A clusterProcessGroupStatusHistoryEntity
      */
@@ -926,9 +904,7 @@ public class ClusterResource extends ApplicationResource {
     /**
      * Gets the remote process group status for every node.
      *
-     * @param clientId Optional client id. If the client id is not specified, a
-     * new one will be generated. This value (whether specified or generated) 
is
-     * included in the response.
+     * @param clientId Optional client id. If the client id is not specified, 
a new one will be generated. This value (whether specified or generated) is 
included in the response.
      * @param id The id of the remote process group
      * @return A clusterRemoteProcessGroupStatusEntity
      */
@@ -991,9 +967,7 @@ public class ClusterResource extends ApplicationResource {
     /**
      * Gets the input port status for every node.
      *
-     * @param clientId Optional client id. If the client id is not specified, a
-     * new one will be generated. This value (whether specified or generated) 
is
-     * included in the response.
+     * @param clientId Optional client id. If the client id is not specified, 
a new one will be generated. This value (whether specified or generated) is 
included in the response.
      * @param id The id of the input port
      * @return A clusterPortStatusEntity
      */
@@ -1056,9 +1030,7 @@ public class ClusterResource extends ApplicationResource {
     /**
      * Gets the output port status for every node.
      *
-     * @param clientId Optional client id. If the client id is not specified, a
-     * new one will be generated. This value (whether specified or generated) 
is
-     * included in the response.
+     * @param clientId Optional client id. If the client id is not specified, 
a new one will be generated. This value (whether specified or generated) is 
included in the response.
      * @param id The id of the output port
      * @return A clusterPortStatusEntity
      */
@@ -1121,9 +1093,7 @@ public class ClusterResource extends ApplicationResource {
     /**
      * Gets the remote process group status history for every node.
      *
-     * @param clientId Optional client id. If the client id is not specified, a
-     * new one will be generated. This value (whether specified or generated) 
is
-     * included in the response.
+     * @param clientId Optional client id. If the client id is not specified, 
a new one will be generated. This value (whether specified or generated) is 
included in the response.
      * @param id The id of the processor
      * @return A clusterRemoteProcessGroupStatusHistoryEntity
      */
@@ -1183,7 +1153,6 @@ public class ClusterResource extends ApplicationResource {
     }
 
     // setters
-    
     public void setServiceFacade(NiFiServiceFacade serviceFacade) {
         this.serviceFacade = serviceFacade;
     }

http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/46e691dd/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-api/src/main/java/org/apache/nifi/web/api/ConnectionResource.java
----------------------------------------------------------------------
diff --git 
a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-api/src/main/java/org/apache/nifi/web/api/ConnectionResource.java
 
b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-api/src/main/java/org/apache/nifi/web/api/ConnectionResource.java
index 4daea39..cd8b922 100644
--- 
a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-api/src/main/java/org/apache/nifi/web/api/ConnectionResource.java
+++ 
b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-api/src/main/java/org/apache/nifi/web/api/ConnectionResource.java
@@ -114,9 +114,7 @@ public class ConnectionResource extends ApplicationResource 
{
     /**
      * Gets all the connections.
      *
-     * @param clientId Optional client id. If the client id is not specified, a
-     * new one will be generated. This value (whether specified or generated) 
is
-     * included in the response.
+     * @param clientId Optional client id. If the client id is not specified, 
a new one will be generated. This value (whether specified or generated) is 
included in the response.
      * @return A connectionsEntity.
      */
     @GET
@@ -173,9 +171,7 @@ public class ConnectionResource extends ApplicationResource 
{
     /**
      * Retrieves the specified connection.
      *
-     * @param clientId Optional client id. If the client id is not specified, a
-     * new one will be generated. This value (whether specified or generated) 
is
-     * included in the response.
+     * @param clientId Optional client id. If the client id is not specified, 
a new one will be generated. This value (whether specified or generated) is 
included in the response.
      * @param id The id of the connection.
      * @return A connectionEntity.
      */
@@ -239,9 +235,7 @@ public class ConnectionResource extends ApplicationResource 
{
     /**
      * Retrieves the specified connection status history.
      *
-     * @param clientId Optional client id. If the client id is not specified, a
-     * new one will be generated. This value (whether specified or generated) 
is
-     * included in the response.
+     * @param clientId Optional client id. If the client id is not specified, 
a new one will be generated. This value (whether specified or generated) is 
included in the response.
      * @param id The id of the connection to retrieve.
      * @return A statusHistoryEntity.
      */
@@ -306,11 +300,8 @@ public class ConnectionResource extends 
ApplicationResource {
      * Creates a connection.
      *
      * @param httpServletRequest request
-     * @param version The revision is used to verify the client is working with
-     * the latest version of the flow.
-     * @param clientId Optional client id. If the client id is not specified, a
-     * new one will be generated. This value (whether specified or generated) 
is
-     * included in the response.
+     * @param version The revision is used to verify the client is working 
with the latest version of the flow.
+     * @param clientId Optional client id. If the client id is not specified, 
a new one will be generated. This value (whether specified or generated) is 
included in the response.
      * @param name The name of the connection.
      * @param sourceId The id of the source connectable.
      * @param sourceGroupId The parent group id for the source.
@@ -318,15 +309,10 @@ public class ConnectionResource extends 
ApplicationResource {
      * @param bends Array of bend points in string form ["x,y", "x,y", "x,y"]
      * @param relationships Array of relationships.
      * @param flowFileExpiration The flow file expiration in minutes
-     * @param backPressureObjectThreshold The object count for when to apply
-     * back pressure.
-     * @param backPressureDataSizeThreshold The object size for when to apply
-     * back pressure.
-     * @param prioritizers Array of prioritizer types. These types should refer
-     * to one of the types in the GET /controller/prioritizers response. If 
this
-     * parameter is not specified no change will be made. If this parameter
-     * appears with no value (empty string), it will be treated as an empty
-     * array.
+     * @param backPressureObjectThreshold The object count for when to apply 
back pressure.
+     * @param backPressureDataSizeThreshold The object size for when to apply 
back pressure.
+     * @param prioritizers Array of prioritizer types. These types should 
refer to one of the types in the GET /controller/prioritizers response. If this 
parameter is not specified no change will be
+     * made. If this parameter appears with no value (empty string), it will 
be treated as an empty array.
      * @param destinationId The id of the destination connectable.
      * @param destinationGroupId The parent group id for the destination.
      * @param destinationType The type of the destination connectable.
@@ -573,11 +559,8 @@ public class ConnectionResource extends 
ApplicationResource {
      * Updates the specified relationship target.
      *
      * @param httpServletRequest request
-     * @param version The revision is used to verify the client is working with
-     * the latest version of the flow.
-     * @param clientId Optional client id. If the client id is not specified, a
-     * new one will be generated. This value (whether specified or generated) 
is
-     * included in the response.
+     * @param version The revision is used to verify the client is working 
with the latest version of the flow.
+     * @param clientId Optional client id. If the client id is not specified, 
a new one will be generated. This value (whether specified or generated) is 
included in the response.
      * @param connectionId The id of the source processor.
      * @param name The name of the connection.
      * @param relationships Array of relationships.
@@ -585,15 +568,10 @@ public class ConnectionResource extends 
ApplicationResource {
      * @param labelIndex The control point index for the connection label
      * @param zIndex The zIndex for this connection
      * @param flowFileExpiration The flow file expiration in minutes
-     * @param backPressureObjectThreshold The object count for when to apply
-     * back pressure.
-     * @param backPressureDataSizeThreshold The object size for when to apply
-     * back pressure.
-     * @param prioritizers Array of prioritizer types. These types should refer
-     * to one of the types in the GET /controller/prioritizers response. If 
this
-     * parameter is not specified no change will be made. If this parameter
-     * appears with no value (empty string), it will be treated as an empty
-     * array.
+     * @param backPressureObjectThreshold The object count for when to apply 
back pressure.
+     * @param backPressureDataSizeThreshold The object size for when to apply 
back pressure.
+     * @param prioritizers Array of prioritizer types. These types should 
refer to one of the types in the GET /controller/prioritizers response. If this 
parameter is not specified no change will be
+     * made. If this parameter appears with no value (empty string), it will 
be treated as an empty array.
      * @param destinationId The id of the destination connectable.
      * @param destinationGroupId The group id of the destination.
      * @param destinationType The type of the destination type.
@@ -828,11 +806,8 @@ public class ConnectionResource extends 
ApplicationResource {
      * Removes the specified connection.
      *
      * @param httpServletRequest request
-     * @param version The revision is used to verify the client is working with
-     * the latest version of the flow.
-     * @param clientId Optional client id. If the client id is not specified, a
-     * new one will be generated. This value (whether specified or generated) 
is
-     * included in the response.
+     * @param version The revision is used to verify the client is working 
with the latest version of the flow.
+     * @param clientId Optional client id. If the client id is not specified, 
a new one will be generated. This value (whether specified or generated) is 
included in the response.
      * @param id The id of the connection.
      * @return An Entity containing the client id and an updated revision.
      */
@@ -911,7 +886,6 @@ public class ConnectionResource extends ApplicationResource 
{
     }
 
     // setters
-    
     public void setServiceFacade(NiFiServiceFacade serviceFacade) {
         this.serviceFacade = serviceFacade;
     }

http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/46e691dd/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-api/src/main/java/org/apache/nifi/web/api/ControllerResource.java
----------------------------------------------------------------------
diff --git 
a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-api/src/main/java/org/apache/nifi/web/api/ControllerResource.java
 
b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-api/src/main/java/org/apache/nifi/web/api/ControllerResource.java
index b2a5956..8ecae5d 100644
--- 
a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-api/src/main/java/org/apache/nifi/web/api/ControllerResource.java
+++ 
b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-api/src/main/java/org/apache/nifi/web/api/ControllerResource.java
@@ -249,8 +249,7 @@ public class ControllerResource extends ApplicationResource 
{
     }
 
     /**
-     * Returns a 200 OK response to indicate this is a valid controller
-     * endpoint.
+     * Returns a 200 OK response to indicate this is a valid controller 
endpoint.
      *
      * @return An OK response with an empty entity body.
      */
@@ -267,9 +266,7 @@ public class ControllerResource extends ApplicationResource 
{
     /**
      * Returns the details of this NiFi.
      *
-     * @param clientId Optional client id. If the client id is not specified, a
-     * new one will be generated. This value (whether specified or generated) 
is
-     * included in the response.
+     * @param clientId Optional client id. If the client id is not specified, 
a new one will be generated. This value (whether specified or generated) is 
included in the response.
      * @return A controllerEntity.
      */
     @GET
@@ -364,22 +361,14 @@ public class ControllerResource extends 
ApplicationResource {
     }
 
     /**
-     * Creates a new archive of this flow controller. Note, this is a POST
-     * operation that returns a URI that is not representative of the thing 
that
-     * was actually created. The archive that is created cannot be referenced 
at
-     * a later time, therefore there is no corresponding URI. Instead the
-     * request URI is returned.
+     * Creates a new archive of this flow controller. Note, this is a POST 
operation that returns a URI that is not representative of the thing that was 
actually created. The archive that is created
+     * cannot be referenced at a later time, therefore there is no 
corresponding URI. Instead the request URI is returned.
      *
-     * Alternatively, we could have performed a PUT request. However, PUT
-     * requests are supposed to be idempotent and this endpoint is certainly
-     * not.
+     * Alternatively, we could have performed a PUT request. However, PUT 
requests are supposed to be idempotent and this endpoint is certainly not.
      *
      * @param httpServletRequest request
-     * @param version The revision is used to verify the client is working with
-     * the latest version of the flow.
-     * @param clientId Optional client id. If the client id is not specified, a
-     * new one will be generated. This value (whether specified or generated) 
is
-     * included in the response.
+     * @param version The revision is used to verify the client is working 
with the latest version of the flow.
+     * @param clientId Optional client id. If the client id is not specified, 
a new one will be generated. This value (whether specified or generated) is 
included in the response.
      * @return A processGroupEntity.
      */
     @POST
@@ -498,9 +487,7 @@ public class ControllerResource extends ApplicationResource 
{
     /**
      * Retrieves the status for this NiFi.
      *
-     * @param clientId Optional client id. If the client id is not specified, a
-     * new one will be generated. This value (whether specified or generated) 
is
-     * included in the response.
+     * @param clientId Optional client id. If the client id is not specified, 
a new one will be generated. This value (whether specified or generated) is 
included in the response.
      * @return A controllerStatusEntity.
      */
     @GET
@@ -551,9 +538,7 @@ public class ControllerResource extends ApplicationResource 
{
     /**
      * Retrieves the counters report for this NiFi.
      *
-     * @param clientId Optional client id. If the client id is not specified, a
-     * new one will be generated. This value (whether specified or generated) 
is
-     * included in the response.
+     * @param clientId Optional client id. If the client id is not specified, 
a new one will be generated. This value (whether specified or generated) is 
included in the response.
      * @return A countersEntity.
      */
     @GET
@@ -605,9 +590,7 @@ public class ControllerResource extends ApplicationResource 
{
      * Update the specified counter. This will reset the counter value to 0.
      *
      * @param httpServletRequest request
-     * @param clientId Optional client id. If the client id is not specified, a
-     * new one will be generated. This value (whether specified or generated) 
is
-     * included in the response.
+     * @param clientId Optional client id. If the client id is not specified, 
a new one will be generated. This value (whether specified or generated) is 
included in the response.
      * @param id The id of the counter.
      * @return A counterEntity.
      */
@@ -672,9 +655,7 @@ public class ControllerResource extends ApplicationResource 
{
     /**
      * Retrieves the configuration for this NiFi.
      *
-     * @param clientId Optional client id. If the client id is not specified, a
-     * new one will be generated. This value (whether specified or generated) 
is
-     * included in the response.
+     * @param clientId Optional client id. If the client id is not specified, 
a new one will be generated. This value (whether specified or generated) is 
included in the response.
      * @return A controllerConfigurationEntity.
      */
     @GET
@@ -733,17 +714,12 @@ public class ControllerResource extends 
ApplicationResource {
      * Update the configuration for this NiFi.
      *
      * @param httpServletRequest request
-     * @param version The revision is used to verify the client is working with
-     * the latest version of the flow.
-     * @param clientId Optional client id. If the client id is not specified, a
-     * new one will be generated. This value (whether specified or generated) 
is
-     * included in the response.
+     * @param version The revision is used to verify the client is working 
with the latest version of the flow.
+     * @param clientId Optional client id. If the client id is not specified, 
a new one will be generated. This value (whether specified or generated) is 
included in the response.
      * @param name The name of this controller.
      * @param comments The comments of this controller.
-     * @param maxTimerDrivenThreadCount The maximum number of timer driven
-     * threads this controller has available.
-     * @param maxEventDrivenThreadCount The maximum number of timer driven
-     * threads this controller has available.
+     * @param maxTimerDrivenThreadCount The maximum number of timer driven 
threads this controller has available.
+     * @param maxEventDrivenThreadCount The maximum number of timer driven 
threads this controller has available.
      * @return A controllerConfigurationEntity.
      */
     @PUT
@@ -871,12 +847,9 @@ public class ControllerResource extends 
ApplicationResource {
     }
 
     /**
-     * Retrieves the user details, including the authorities, about the user
-     * making the request.
+     * Retrieves the user details, including the authorities, about the user 
making the request.
      *
-     * @param clientId Optional client id. If the client id is not specified, a
-     * new one will be generated. This value (whether specified or generated) 
is
-     * included in the response.
+     * @param clientId Optional client id. If the client id is not specified, 
a new one will be generated. This value (whether specified or generated) is 
included in the response.
      * @return A authoritiesEntity.
      */
     @GET
@@ -932,9 +905,7 @@ public class ControllerResource extends ApplicationResource 
{
     /**
      * Retrieves the banners for this NiFi.
      *
-     * @param clientId Optional client id. If the client id is not specified, a
-     * new one will be generated. This value (whether specified or generated) 
is
-     * included in the response.
+     * @param clientId Optional client id. If the client id is not specified, 
a new one will be generated. This value (whether specified or generated) is 
included in the response.
      * @return A bannerEntity.
      */
     @GET
@@ -995,9 +966,7 @@ public class ControllerResource extends ApplicationResource 
{
     /**
      * Retrieves the types of processors that this NiFi supports.
      *
-     * @param clientId Optional client id. If the client id is not specified, a
-     * new one will be generated. This value (whether specified or generated) 
is
-     * included in the response.
+     * @param clientId Optional client id. If the client id is not specified, 
a new one will be generated. This value (whether specified or generated) is 
included in the response.
      * @return A processorTypesEntity.
      */
     @GET
@@ -1051,9 +1020,7 @@ public class ControllerResource extends 
ApplicationResource {
     /**
      * Retrieves the types of controller services that this NiFi supports.
      *
-     * @param clientId Optional client id. If the client id is not specified, a
-     * new one will be generated. This value (whether specified or generated) 
is
-     * included in the response.
+     * @param clientId Optional client id. If the client id is not specified, 
a new one will be generated. This value (whether specified or generated) is 
included in the response.
      * @param serviceType Returns only services that implement this type
      * @return A controllerServicesTypesEntity.
      */
@@ -1113,9 +1080,7 @@ public class ControllerResource extends 
ApplicationResource {
     /**
      * Retrieves the types of reporting tasks that this NiFi supports.
      *
-     * @param clientId Optional client id. If the client id is not specified, a
-     * new one will be generated. This value (whether specified or generated) 
is
-     * included in the response.
+     * @param clientId Optional client id. If the client id is not specified, 
a new one will be generated. This value (whether specified or generated) is 
included in the response.
      * @return A controllerServicesTypesEntity.
      */
     @GET
@@ -1169,9 +1134,7 @@ public class ControllerResource extends 
ApplicationResource {
     /**
      * Retrieves the types of prioritizers that this NiFi supports.
      *
-     * @param clientId Optional client id. If the client id is not specified, a
-     * new one will be generated. This value (whether specified or generated) 
is
-     * included in the response.
+     * @param clientId Optional client id. If the client id is not specified, 
a new one will be generated. This value (whether specified or generated) is 
included in the response.
      * @return A prioritizerTypesEntity.
      */
     @GET
@@ -1225,9 +1188,7 @@ public class ControllerResource extends 
ApplicationResource {
     /**
      * Retrieves details about this NiFi to put in the About dialog.
      *
-     * @param clientId Optional client id. If the client id is not specified, a
-     * new one will be generated. This value (whether specified or generated) 
is
-     * included in the response.
+     * @param clientId Optional client id. If the client id is not specified, 
a new one will be generated. This value (whether specified or generated) is 
included in the response.
      * @return An aboutEntity.
      */
     @GET
@@ -1286,7 +1247,6 @@ public class ControllerResource extends 
ApplicationResource {
     }
 
     // setters
-    
     public void setServiceFacade(NiFiServiceFacade serviceFacade) {
         this.serviceFacade = serviceFacade;
     }

Reply via email to