You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by mc...@apache.org on 2018/01/19 17:58:49 UTC

nifi git commit: NIFI-4795: Fixed allowed values This closes #2414

Repository: nifi
Updated Branches:
  refs/heads/master e3c661daa -> 94d097400


NIFI-4795:
Fixed allowed values
This closes #2414


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

Branch: refs/heads/master
Commit: 94d0974003071986c63106f8310fc0c7c677d21f
Parents: e3c661d
Author: sbouchex <sb...@infovista.com>
Authored: Thu Jan 18 23:49:55 2018 +0100
Committer: Matt Gilman <ma...@gmail.com>
Committed: Fri Jan 19 12:58:36 2018 -0500

----------------------------------------------------------------------
 .../java/org/apache/nifi/web/api/dto/AccessPolicySummaryDTO.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/nifi/blob/94d09740/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/AccessPolicySummaryDTO.java
----------------------------------------------------------------------
diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/AccessPolicySummaryDTO.java b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/AccessPolicySummaryDTO.java
index 01f4db1..f21a65c 100644
--- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/AccessPolicySummaryDTO.java
+++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/AccessPolicySummaryDTO.java
@@ -37,7 +37,7 @@ public class AccessPolicySummaryDTO extends ComponentDTO {
      */
     @ApiModelProperty(
             value = "The action associated with this access policy.",
-            allowableValues = "READ, WRITE"
+            allowableValues = "read, write"
     )
     public String getAction() {
         return action;