Convert tabs to spaces basic refactoring
[policy/engine.git] / ONAP-REST / src / main / java / org / onap / policy / rest / adapter / YAMLParams.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP 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.onap.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 clname;
29     private String limit;
30     private String timeWindow;
31     private String timeUnits;
32     private String guardActiveStart;
33     private String guardActiveEnd;
34     private List<String> blackList;
35     private List<String> targets;
36
37     public String getActor() {
38         return actor;
39     }
40     public void setActor(String actor) {
41         this.actor = actor;
42     }
43     public String getRecipe() {
44         return recipe;
45     }
46     public void setRecipe(String recipe) {
47         this.recipe = recipe;
48     }
49     public String getLimit() {
50         return limit;
51     }
52     public void setLimit(String limit) {
53         this.limit = limit;
54     }
55     public String getTimeWindow() {
56         return timeWindow;
57     }
58     public void setTimeWindow(String timeWindow) {
59         this.timeWindow = timeWindow;
60     }
61     public String getGuardActiveStart() {
62         return guardActiveStart;
63     }
64     public void setGuardActiveStart(String guardActiveStart) {
65         this.guardActiveStart = guardActiveStart;
66     }
67     public String getGuardActiveEnd() {
68         return guardActiveEnd;
69     }
70     public void setGuardActiveEnd(String guardActiveEnd) {
71         this.guardActiveEnd = guardActiveEnd;
72     }
73     public List<String> getBlackList() {
74         return blackList;
75     }
76     public void setBlackList(List<String> blackList) {
77         this.blackList = blackList;
78     }
79     public String getClname() {
80         return clname;
81     }
82     public void setClname(String clname) {
83         this.clname = clname;
84     }
85     public String getTimeUnits() {
86         return timeUnits;
87     }
88     public void setTimeUnits(String timeUnits) {
89         this.timeUnits = timeUnits;
90     }
91     public List<String> getTargets() {
92         return targets;
93     }
94     public void setTargets(List<String> targets) {
95         this.targets = targets;
96     }
97 }