diff options
author | Ravindra Bakkamanthala <rb7147@att.com> | 2017-06-05 22:42:02 -0400 |
---|---|---|
committer | Ravindra Bakkamanthala <rb7147@att.com> | 2017-06-07 14:47:34 -0400 |
commit | fc5c07705edc4dcb7083b39116a43844bb6a1490 (patch) | |
tree | ab5c7258197fc776fef8106413704a5f0a829160 /ECOMP-REST/src/main/java | |
parent | d9007d680d19734d5dc106479784c420236cca4b (diff) |
Fixed the Policy API issues and Bugfixes
Change-Id: I6e8b54442421b6ebd0ff88426fc6e5f3a36b0690
Signed-off-by: Ravindra Bakkamanthala <rb7147@att.com>
Diffstat (limited to 'ECOMP-REST/src/main/java')
-rw-r--r-- | ECOMP-REST/src/main/java/org/openecomp/policy/rest/adapter/YAMLParams.java | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/ECOMP-REST/src/main/java/org/openecomp/policy/rest/adapter/YAMLParams.java b/ECOMP-REST/src/main/java/org/openecomp/policy/rest/adapter/YAMLParams.java index adcce2633..71a99d2fb 100644 --- a/ECOMP-REST/src/main/java/org/openecomp/policy/rest/adapter/YAMLParams.java +++ b/ECOMP-REST/src/main/java/org/openecomp/policy/rest/adapter/YAMLParams.java @@ -20,6 +20,8 @@ package org.openecomp.policy.rest.adapter; +import java.util.List; + public class YAMLParams { private String actor; private String recipe; @@ -27,6 +29,7 @@ public class YAMLParams { private String timeWindow; private String guardActiveStart; private String guardActiveEnd; + private List<String> blackList; public String getActor() { return actor; @@ -64,4 +67,10 @@ public class YAMLParams { public void setGuardActiveEnd(String guardActiveEnd) { this.guardActiveEnd = guardActiveEnd; } + public List<String> getBlackList() { + return blackList; + } + public void setBlackList(List<String> blackList) { + this.blackList = blackList; + } } |