aboutsummaryrefslogtreecommitdiffstats
path: root/ECOMP-REST/src/main/java/org
diff options
context:
space:
mode:
authorRavindra Bakkamanthala <rb7147@att.com>2017-06-05 22:42:02 -0400
committerRavindra Bakkamanthala <rb7147@att.com>2017-06-07 14:47:34 -0400
commitfc5c07705edc4dcb7083b39116a43844bb6a1490 (patch)
treeab5c7258197fc776fef8106413704a5f0a829160 /ECOMP-REST/src/main/java/org
parentd9007d680d19734d5dc106479784c420236cca4b (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/org')
-rw-r--r--ECOMP-REST/src/main/java/org/openecomp/policy/rest/adapter/YAMLParams.java9
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;
+ }
}