7ac902fff8f6c58ee7be1bb7d0ebf80345b00afe
[oam/tr069-adapter.git] / mapper / src / main / java / org / commscope / tr069adapter / mapper / model / NetConfNotificationDTO.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 import com.fasterxml.jackson.annotation.JsonTypeInfo;
23
24 @JsonTypeInfo(use = JsonTypeInfo.Id.CLASS, include = JsonTypeInfo.As.PROPERTY, property = "@class")
25 public class NetConfNotificationDTO implements Serializable {
26
27   private static final long serialVersionUID = 4928942484595767042L;
28   private String notificaiton;
29   private String deviceID;
30
31   public NetConfNotificationDTO() {
32     super();
33   }
34
35   public NetConfNotificationDTO(String deviceID, String notificaiton) {
36     super();
37     this.deviceID = deviceID;
38     this.notificaiton = notificaiton;
39   }
40
41   public String getDeviceID() {
42     return deviceID;
43   }
44
45   public void setDeviceID(String deviceID) {
46     this.deviceID = deviceID;
47   }
48
49   public String getNotificaiton() {
50     return notificaiton;
51   }
52
53   public void setNotificaiton(String notificaiton) {
54     this.notificaiton = notificaiton;
55   }
56 }