Merge "fix oauth code"
[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.base.internalTypes.InternalDateAndTime;
22
23 @XmlRootElement(name = "ObjectDeletionNotification")
24 public class ObjectDeletionNotificationXml extends MwtNotificationBase implements GetEventType {
25
26     private static String EVENTTYPE =  "ObjectDeletionNotification";
27
28     public ObjectDeletionNotificationXml() {
29
30     }
31
32     /**
33      * Normalized notification
34      * @param nodeName name of mountpoint or instance that owns the problem
35      * @param counter of notification
36      * @param timeStamp from ne
37      * @param objectIdRef from ne
38      */
39     public ObjectDeletionNotificationXml(String nodeName, String counter, InternalDateAndTime timeStamp, String objectIdRef) {
40         super(nodeName, counter, timeStamp,  objectIdRef);
41     }
42
43     /*
44     public ObjectDeletionNotificationXml(String nodeName, ObjectDeletionNotification notification) {
45         super(nodeName, notification.getCounter().toString(), InternalDateAndTime.valueOf(notification.getTimeStamp()),
46 //                notification.getObjectId().getValue());
47                 notification.getObjectIdRef().getValue());
48     }*/
49 /*
50     public ObjectDeletionNotificationXml(String nodeName, org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.microwave.model.rev170324.ObjectDeletionNotification notification) {
51         super(nodeName, notification.getCounter().toString(), InternalDateAndTime.valueOf(notification.getTimeStamp()),
52 //                notification.getObjectId().getValue());
53                 notification.getObjectIdRef().getValue());
54     }
55 */
56     @Override
57     public String getEventType() {
58         return EVENTTYPE;
59     }
60
61 }