2  * ============LICENSE_START=======================================================
 
   3  * ONAP : ccsdk features
 
   4  * ================================================================================
 
   5  * Copyright (C) 2020 highstreet technologies GmbH Intellectual Property.
 
   7  * ================================================================================
 
   8  * Licensed under the Apache License, Version 2.0 (the "License");
 
   9  * you may not use this file except in compliance with the License.
 
  10  * You may obtain a copy of the License at
 
  12  *     http://www.apache.org/licenses/LICENSE-2.0
 
  14  * Unless required by applicable law or agreed to in writing, software
 
  15  * distributed under the License is distributed on an "AS IS" BASIS,
 
  16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
  17  * See the License for the specific language governing permissions and
 
  18  * limitations under the License.
 
  19  * ============LICENSE_END=========================================================
 
  22 package org.onap.ccsdk.features.sdnr.wt.devicemanager.types;
 
  24 import com.fasterxml.jackson.annotation.JsonIgnore;
 
  25 import com.fasterxml.jackson.annotation.JsonPropertyOrder;
 
  26 import java.util.ArrayList;
 
  27 import java.util.HashMap;
 
  29 @JsonPropertyOrder({"arrayOfNamedHashMap", "changeContact", "changeIdentifier", "changeType", "newState", "oldState",
 
  30         "notificationFieldsVersion"})
 
  32 public class VESNotificationFieldsPOJO {
 
  34     private ArrayList<HashMap<String, Object>> arrayOfNamedHashMap = new ArrayList<HashMap<String, Object>>();
 
  36     private HashMap<String, Object> namedHashMap = new HashMap<String, Object>();
 
  38     private HashMap<String, String> hashMap = new HashMap<String, String>();
 
  40     private String changeContact = "";
 
  41     private String changeIdentifier = "";
 
  42     private String changeType = "";
 
  44     private String newState = "";
 
  46     private String oldState = "";
 
  48     private String stateInterface = "";
 
  49     private String notificationFieldsVersion = "2.0";
 
  51     public ArrayList<HashMap<String, Object>> getArrayOfNamedHashMap() {
 
  52         return arrayOfNamedHashMap;
 
  55     public void setArrayOfNamedHashMap(ArrayList<HashMap<String, Object>> arrayOfNamedHashMap) {
 
  56         this.arrayOfNamedHashMap = arrayOfNamedHashMap;
 
  59     public String getChangeContact() {
 
  63     public void setChangeContact(String changeContact) {
 
  64         this.changeContact = changeContact;
 
  67     public String getChangeIdentifier() {
 
  68         return changeIdentifier;
 
  71     public void setChangeIdentifier(String changeIdentifier) {
 
  72         this.changeIdentifier = changeIdentifier;
 
  75     public String getChangeType() {
 
  79     public void setChangeType(String changeType) {
 
  80         this.changeType = changeType;
 
  83     public String getNewState() {
 
  87     public void setNewState(String newState) {
 
  88         this.newState = newState;
 
  91     public String getOldState() {
 
  95     public void setOldState(String oldState) {
 
  96         this.oldState = oldState;
 
  99     public String getStateInterface() {
 
 100         return stateInterface;
 
 103     public void setStateInterface(String stateInterface) {
 
 104         this.stateInterface = stateInterface;
 
 107     public String getNotificationFieldsVersion() {
 
 108         return notificationFieldsVersion;
 
 111     public void setNotificationFieldsVersion(String notificationFieldsVersion) {
 
 112         this.notificationFieldsVersion = notificationFieldsVersion;