Included Policy GUI Enhancements and validations
[policy/engine.git] / ONAP-REST / src / main / java / org / onap / policy / rest / adapter / ClosedLoopFaultTrapDatas.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 package org.onap.policy.rest.adapter;
21
22 import java.util.List;
23
24 public class ClosedLoopFaultTrapDatas {
25
26         private List<Object> trap1;
27         private List<Object> trap2;
28         private List<Object> trap3;
29         private List<Object> trap4;
30         private List<Object> trap5;
31         private List<Object> trap6;
32         public List<Object> getTrap1() {
33                 return trap1;
34         }
35         public void setTrap1(List<Object> trap1) {
36                 this.trap1 = trap1;
37         }
38         public List<Object> getTrap2() {
39                 return trap2;
40         }
41         public void setTrap2(List<Object> trap2) {
42                 this.trap2 = trap2;
43         }
44         public List<Object> getTrap3() {
45                 return trap3;
46         }
47         public void setTrap3(List<Object> trap3) {
48                 this.trap3 = trap3;
49         }
50         public List<Object> getTrap4() {
51                 return trap4;
52         }
53         public void setTrap4(List<Object> trap4) {
54                 this.trap4 = trap4;
55         }
56         public List<Object> getTrap5() {
57                 return trap5;
58         }
59         public void setTrap5(List<Object> trap5) {
60                 this.trap5 = trap5;
61         }
62         public List<Object> getTrap6() {
63                 return trap6;
64         }
65         public void setTrap6(List<Object> trap6) {
66                 this.trap6 = trap6;
67         }
68
69 }