Fixed the Policy API issues and Bugfixes
[policy/engine.git] / ECOMP-REST / src / main / java / org / openecomp / policy / rest / adapter / YAMLParams.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ECOMP Policy Engine
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.policy.rest.adapter;
22
23 import java.util.List;
24
25 public class YAMLParams {
26         private String actor;
27         private String recipe;
28         private String limit;
29         private String timeWindow;
30         private String guardActiveStart;
31         private String guardActiveEnd;
32         private List<String> blackList;
33         
34         public String getActor() {
35                 return actor;
36         }
37         public void setActor(String actor) {
38                 this.actor = actor;
39         }
40         public String getRecipe() {
41                 return recipe;
42         }
43         public void setRecipe(String recipe) {
44                 this.recipe = recipe;
45         }
46         public String getLimit() {
47                 return limit;
48         }
49         public void setLimit(String limit) {
50                 this.limit = limit;
51         }
52         public String getTimeWindow() {
53                 return timeWindow;
54         }
55         public void setTimeWindow(String timeWindow) {
56                 this.timeWindow = timeWindow;
57         }
58         public String getGuardActiveStart() {
59                 return guardActiveStart;
60         }
61         public void setGuardActiveStart(String guardActiveStart) {
62                 this.guardActiveStart = guardActiveStart;
63         }
64         public String getGuardActiveEnd() {
65                 return guardActiveEnd;
66         }
67         public void setGuardActiveEnd(String guardActiveEnd) {
68                 this.guardActiveEnd = guardActiveEnd;
69         }
70         public List<String> getBlackList() {
71                 return blackList;
72         }
73         public void setBlackList(List<String> blackList) {
74                 this.blackList = blackList;
75         }
76 }