Changed to unmaintained
[appc.git] / appc-config / appc-config-audit / provider / src / main / java / org / onap / sdnc / config / audit / node / Parameters.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Copyright (C) 2017 Amdocs
8  * =============================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  * 
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  * 
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * 
21  * ============LICENSE_END=========================================================
22  */
23
24 package org.onap.sdnc.config.audit.node;
25
26
27 import java.util.Map;
28
29 public class Parameters
30 {
31
32     String payloadX ;
33
34     public String getPayloadX() {
35         return payloadX;
36     }
37     public void setPayloadX(String payloadX) {
38         this.payloadX = payloadX;
39     }
40
41     String payloadXtype;
42
43     public String getPayloadXtype() {
44         return payloadXtype;
45     }
46     public void setPayloadXtype(String payloadXtype) {
47         this.payloadXtype = payloadXtype;
48     }
49
50     String payloadY ;
51
52     public String getPayloadY() {
53         return payloadY;
54     }
55     public void setPayloadY(String payloadY) {
56         this.payloadY = payloadY;
57     }
58
59     String payloadYtype;
60
61     public String getPayloadYtype() {
62         return payloadYtype;
63     }
64     public void setPayloadYtype(String payloadYtype) {
65         this.payloadYtype = payloadYtype;
66     }
67
68     String compareDataType;
69
70     public String getCompareDataType() {
71         return compareDataType;
72     }
73     public void setCompareDataType(String compareDataType) {
74         this.compareDataType = compareDataType;
75     }
76
77     String compareType;
78
79     public String getCompareType() {
80         return compareType;
81     }
82     public void setCompareType(String compareType) {
83         this.compareType = compareType;
84     }
85
86     String requestIdentifier;
87
88     public String getRequestIdentifier() {
89         return requestIdentifier;
90     }
91     public void setRequestIdentifier(String requestIdentifier) {
92         this.requestIdentifier = requestIdentifier;
93     }
94     public Parameters(Map<String, String> inParams)
95     {
96         this.compareType = inParams.get("compareType");
97         this.compareDataType = inParams.get("compareDataType");
98         this.payloadX= inParams.get("sourceData");
99         this.payloadY= inParams.get("targetData");
100         this.payloadXtype = inParams.get("sourceDataType");
101         this.payloadYtype = inParams.get("targetDataType");
102         this.requestIdentifier = inParams.get("requestIdentifier");
103
104     }
105 }