2 * ============LICENSE_START=======================================================
4 * ================================================================================
5 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6 * ================================================================================
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
11 * http://www.apache.org/licenses/LICENSE-2.0
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 * ============LICENSE_END=========================================================
21 package org.onap.so.adapters.network.async.client;
23 import javax.xml.bind.annotation.XmlAccessType;
24 import javax.xml.bind.annotation.XmlAccessorType;
25 import javax.xml.bind.annotation.XmlElement;
26 import javax.xml.bind.annotation.XmlType;
31 * Java class for deleteNetworkNotification complex type.
34 * The following schema fragment specifies the expected content contained within this class.
37 * <complexType name="deleteNetworkNotification">
39 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
41 * <element name="messageId" type="{http://www.w3.org/2001/XMLSchema}string"/>
42 * <element name="completed" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
43 * <element name="exception" type="{http://org.onap.so/networkNotify}msoExceptionCategory" minOccurs="0"/>
44 * <element name="errorMessage" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
45 * <element name="networkDeleted" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
48 * </complexContent>
54 @XmlAccessorType(XmlAccessType.FIELD)
55 @XmlType(name = "deleteNetworkNotification",
56 propOrder = {"messageId", "completed", "exception", "errorMessage", "networkDeleted"})
57 public class DeleteNetworkNotification {
59 @XmlElement(required = true)
60 protected String messageId;
61 protected boolean completed;
62 protected MsoExceptionCategory exception;
63 protected String errorMessage;
64 protected Boolean networkDeleted;
67 * Gets the value of the messageId property.
69 * @return possible object is {@link String }
72 public String getMessageId() {
77 * Sets the value of the messageId property.
79 * @param value allowed object is {@link String }
82 public void setMessageId(String value) {
83 this.messageId = value;
87 * Gets the value of the completed property.
90 public boolean isCompleted() {
95 * Sets the value of the completed property.
98 public void setCompleted(boolean value) {
99 this.completed = value;
103 * Gets the value of the exception property.
105 * @return possible object is {@link MsoExceptionCategory }
108 public MsoExceptionCategory getException() {
113 * Sets the value of the exception property.
115 * @param value allowed object is {@link MsoExceptionCategory }
118 public void setException(MsoExceptionCategory value) {
119 this.exception = value;
123 * Gets the value of the errorMessage property.
125 * @return possible object is {@link String }
128 public String getErrorMessage() {
133 * Sets the value of the errorMessage property.
135 * @param value allowed object is {@link String }
138 public void setErrorMessage(String value) {
139 this.errorMessage = value;
143 * Gets the value of the networkDeleted property.
145 * @return possible object is {@link Boolean }
148 public Boolean isNetworkDeleted() {
149 return networkDeleted;
153 * Sets the value of the networkDeleted property.
155 * @param value allowed object is {@link Boolean }
158 public void setNetworkDeleted(Boolean value) {
159 this.networkDeleted = value;