ORAN A1 Adapter YANG Model Update
[ccsdk/features.git] / sdnr / wt / devicemanager / provider / src / main / java / org / onap / ccsdk / features / sdnr / wt / devicemanager / impl / xml / ObjectDeletionNotificationXml.java
1 /*******************************************************************************
2  * ============LICENSE_START========================================================================
3  * ONAP : ccsdk feature sdnr wt
4  * =================================================================================================
5  * Copyright (C) 2019 highstreet technologies GmbH Intellectual Property. All rights reserved.
6  * =================================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
8  * in compliance with the License. You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software distributed under the License
13  * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
14  * or implied. See the License for the specific language governing permissions and limitations under
15  * the License.
16  * ============LICENSE_END==========================================================================
17  ******************************************************************************/
18 package org.onap.ccsdk.features.sdnr.wt.devicemanager.impl.xml;
19
20 import javax.xml.bind.annotation.XmlRootElement;
21 import org.onap.ccsdk.features.sdnr.wt.devicemanager.impl.util.InternalDateAndTime;
22 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.DateAndTime;
23 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.data.provider.rev190801.Eventlog;
24 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.data.provider.rev190801.EventlogBuilder;
25 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.data.provider.rev190801.SourceType;
26
27 @XmlRootElement(name = "ObjectDeletionNotification")
28 public class ObjectDeletionNotificationXml extends MwtNotificationBase implements GetEventType {
29
30     private static String EVENTTYPE =  "ObjectDeletionNotification";
31     private static String ACTION = "deletion";
32
33     public ObjectDeletionNotificationXml() {
34
35     }
36
37     /**
38      * Normalized notification
39      * @param nodeName name of mountpoint or instance that owns the problem
40      * @param counter of notification
41      * @param timeStamp from ne
42      * @param objectIdRef from ne
43      */
44     public ObjectDeletionNotificationXml(String nodeName, Integer counter, InternalDateAndTime timeStamp, String objectIdRef) {
45         super(nodeName, counter, timeStamp,  objectIdRef);
46     }
47
48     /*
49     public ObjectDeletionNotificationXml(String nodeName, ObjectDeletionNotification notification) {
50         super(nodeName, notification.getCounter().toString(), InternalDateAndTime.valueOf(notification.getTimeStamp()),
51 //                notification.getObjectId().getValue());
52                 notification.getObjectIdRef().getValue());
53     }*/
54 /*
55     public ObjectDeletionNotificationXml(String nodeName, org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.microwave.model.rev170324.ObjectDeletionNotification notification) {
56         super(nodeName, notification.getCounter().toString(), InternalDateAndTime.valueOf(notification.getTimeStamp()),
57 //                notification.getObjectId().getValue());
58                 notification.getObjectIdRef().getValue());
59     }
60 */
61     @Override
62     public String getEventType() {
63         return EVENTTYPE;
64     }
65
66     public Eventlog getEventlogEntity() {
67         return new EventlogBuilder().setAttributeName(ACTION).setNewValue(ACTION)
68                 .setCounter(Integer.valueOf(this.getCounter()))
69                 .setNodeId(this.getNodeName()).setObjectId(this.getObjectId())
70                 .setTimestamp(new DateAndTime(this.getTimeStamp())).setSourceType(SourceType.Netconf).build();
71     }
72
73 }