adcce2633c980b1b2fdaeb05806c5cb6872549d2
[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 public class YAMLParams {
24         private String actor;
25         private String recipe;
26         private String limit;
27         private String timeWindow;
28         private String guardActiveStart;
29         private String guardActiveEnd;
30         
31         public String getActor() {
32                 return actor;
33         }
34         public void setActor(String actor) {
35                 this.actor = actor;
36         }
37         public String getRecipe() {
38                 return recipe;
39         }
40         public void setRecipe(String recipe) {
41                 this.recipe = recipe;
42         }
43         public String getLimit() {
44                 return limit;
45         }
46         public void setLimit(String limit) {
47                 this.limit = limit;
48         }
49         public String getTimeWindow() {
50                 return timeWindow;
51         }
52         public void setTimeWindow(String timeWindow) {
53                 this.timeWindow = timeWindow;
54         }
55         public String getGuardActiveStart() {
56                 return guardActiveStart;
57         }
58         public void setGuardActiveStart(String guardActiveStart) {
59                 this.guardActiveStart = guardActiveStart;
60         }
61         public String getGuardActiveEnd() {
62                 return guardActiveEnd;
63         }
64         public void setGuardActiveEnd(String guardActiveEnd) {
65                 this.guardActiveEnd = guardActiveEnd;
66         }
67 }