Merge "fix oauth code"
[ccsdk/features.git] / sdnr / wt / devicemanager / provider / src / main / java / org / onap / ccsdk / features / sdnr / wt / devicemanager / impl / xml / AttributeValueChangedNotificationXml.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.XmlElement;
21 import javax.xml.bind.annotation.XmlRootElement;
22 import org.onap.ccsdk.features.sdnr.wt.devicemanager.base.internalTypes.InternalDateAndTime;
23
24 @XmlRootElement(name = "AttributeValueChangedNotification")
25 public class AttributeValueChangedNotificationXml extends MwtNotificationBase implements GetEventType {
26
27     private static String EVENTTYPE =  "AttributeValueChangedNotification";
28
29     @XmlElement(name = "attributeName")
30     private String attributeName;
31
32     @XmlElement(name = "newValue")
33     private String newValue;
34
35     public AttributeValueChangedNotificationXml() {
36
37     }
38
39     /**
40      * Normalized notification
41      * @param nodeName name of mountpoint
42      * @param counter of notification
43      * @param timeStamp from ne
44      * @param objectIdRef from ne
45      * @param attributeName from ne
46      * @param newValue from ne
47      */
48     public AttributeValueChangedNotificationXml(String nodeName, String counter, InternalDateAndTime timeStamp, String objectIdRef,
49             String attributeName, String newValue) {
50         super(nodeName, counter, timeStamp, objectIdRef);
51         this.attributeName = attributeName;
52         this.newValue = newValue;
53     }
54
55     public String getAttributeName() {
56         return attributeName;
57     }
58
59     public String getNewValue() {
60         return newValue;
61     }
62
63     @Override
64     public String getEventType() {
65         return EVENTTYPE;
66     }
67
68 }