Development of NETCONF RPCs for tr-069 adapter to
[oam/tr069-adapter.git] / mapper / src / main / java / org / commscope / tr069adapter / mapper / model / NetConfRequest.java
1 /*
2  * ============LICENSE_START========================================================================
3  * ONAP : tr-069-adapter
4  * =================================================================================================
5  * Copyright (C) 2020 CommScope Inc Intellectual Property.
6  * =================================================================================================
7  * This tr-069-adapter software file is distributed by CommScope Inc under the Apache License,
8  * Version 2.0 (the "License"); you may not use this file except in compliance with the License. You
9  * may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
14  * either express or implied. See the License for the specific language governing permissions and
15  * limitations under the License.
16  * ===============LICENSE_END=======================================================================
17  */
18
19 package org.commscope.tr069adapter.mapper.model;
20
21 import java.io.Serializable;
22
23 public class NetConfRequest implements Serializable {
24
25   private static final long serialVersionUID = -7593813981401577995L;
26
27   private String requestXml;
28
29   // operation status
30   private String deviceId;
31   private String swVersion;
32   private String hwVersion;
33
34   public NetConfRequest() {
35     super();
36   }
37
38   public NetConfRequest(String requestXml, String deviceId, String swVersion, String hwVersion) {
39     super();
40     this.requestXml = requestXml;
41     this.deviceId = deviceId;
42     this.swVersion = swVersion;
43     this.hwVersion = hwVersion;
44   }
45
46   public String getRequestXml() {
47     return requestXml;
48   }
49
50   public void setRequestXml(String requestXml) {
51     this.requestXml = requestXml;
52   }
53
54   public String getDeviceId() {
55     return deviceId;
56   }
57
58   public void setDeviceId(String deviceId) {
59     this.deviceId = deviceId;
60   }
61
62   public String getSwVersion() {
63     return swVersion;
64   }
65
66   public void setSwVersion(String swVersion) {
67     this.swVersion = swVersion;
68   }
69
70   public String getHwVersion() {
71     return hwVersion;
72   }
73
74   public void setHwVersion(String hwVersion) {
75     this.hwVersion = hwVersion;
76   }
77
78   @Override
79   public String toString() {
80     return "NetConfRequest [RequestXml=" + requestXml + ", deviceId=" + deviceId + "]";
81   }
82
83 }