ff94be9156027e34eff1584f0fd266dbba53051a
[so.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
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
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
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=========================================================
19  */
20
21 package org.onap.so.adapters.network.async.client;
22
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;
27
28
29 /**
30  * <p>
31  * Java class for deleteNetworkNotification complex type.
32  * 
33  * <p>
34  * The following schema fragment specifies the expected content contained within this class.
35  * 
36  * <pre>
37  * &lt;complexType name="deleteNetworkNotification">
38  *   &lt;complexContent>
39  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
40  *       &lt;sequence>
41  *         &lt;element name="messageId" type="{http://www.w3.org/2001/XMLSchema}string"/>
42  *         &lt;element name="completed" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
43  *         &lt;element name="exception" type="{http://org.onap.so/networkNotify}msoExceptionCategory" minOccurs="0"/>
44  *         &lt;element name="errorMessage" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
45  *         &lt;element name="networkDeleted" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
46  *       &lt;/sequence>
47  *     &lt;/restriction>
48  *   &lt;/complexContent>
49  * &lt;/complexType>
50  * </pre>
51  * 
52  * 
53  */
54 @XmlAccessorType(XmlAccessType.FIELD)
55 @XmlType(name = "deleteNetworkNotification",
56         propOrder = {"messageId", "completed", "exception", "errorMessage", "networkDeleted"})
57 public class DeleteNetworkNotification {
58
59     @XmlElement(required = true)
60     protected String messageId;
61     protected boolean completed;
62     protected MsoExceptionCategory exception;
63     protected String errorMessage;
64     protected Boolean networkDeleted;
65
66     /**
67      * Gets the value of the messageId property.
68      * 
69      * @return possible object is {@link String }
70      * 
71      */
72     public String getMessageId() {
73         return messageId;
74     }
75
76     /**
77      * Sets the value of the messageId property.
78      * 
79      * @param value allowed object is {@link String }
80      * 
81      */
82     public void setMessageId(String value) {
83         this.messageId = value;
84     }
85
86     /**
87      * Gets the value of the completed property.
88      * 
89      */
90     public boolean isCompleted() {
91         return completed;
92     }
93
94     /**
95      * Sets the value of the completed property.
96      * 
97      */
98     public void setCompleted(boolean value) {
99         this.completed = value;
100     }
101
102     /**
103      * Gets the value of the exception property.
104      * 
105      * @return possible object is {@link MsoExceptionCategory }
106      * 
107      */
108     public MsoExceptionCategory getException() {
109         return exception;
110     }
111
112     /**
113      * Sets the value of the exception property.
114      * 
115      * @param value allowed object is {@link MsoExceptionCategory }
116      * 
117      */
118     public void setException(MsoExceptionCategory value) {
119         this.exception = value;
120     }
121
122     /**
123      * Gets the value of the errorMessage property.
124      * 
125      * @return possible object is {@link String }
126      * 
127      */
128     public String getErrorMessage() {
129         return errorMessage;
130     }
131
132     /**
133      * Sets the value of the errorMessage property.
134      * 
135      * @param value allowed object is {@link String }
136      * 
137      */
138     public void setErrorMessage(String value) {
139         this.errorMessage = value;
140     }
141
142     /**
143      * Gets the value of the networkDeleted property.
144      * 
145      * @return possible object is {@link Boolean }
146      * 
147      */
148     public Boolean isNetworkDeleted() {
149         return networkDeleted;
150     }
151
152     /**
153      * Sets the value of the networkDeleted property.
154      * 
155      * @param value allowed object is {@link Boolean }
156      * 
157      */
158     public void setNetworkDeleted(Boolean value) {
159         this.networkDeleted = value;
160     }
161
162 }