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 rollbackNetworkNotification complex type.
 
  34  * The following schema fragment specifies the expected content contained within this class.
 
  37  * <complexType name="rollbackNetworkNotification">
 
  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"/>
 
  47  *   </complexContent>
 
  53 @XmlAccessorType(XmlAccessType.FIELD)
 
  54 @XmlType(name = "rollbackNetworkNotification", propOrder = {"messageId", "completed", "exception", "errorMessage"})
 
  55 public class RollbackNetworkNotification {
 
  57     @XmlElement(required = true)
 
  58     protected String messageId;
 
  59     protected boolean completed;
 
  60     protected MsoExceptionCategory exception;
 
  61     protected String errorMessage;
 
  64      * Gets the value of the messageId property.
 
  66      * @return possible object is {@link String }
 
  69     public String getMessageId() {
 
  74      * Sets the value of the messageId property.
 
  76      * @param value allowed object is {@link String }
 
  79     public void setMessageId(String value) {
 
  80         this.messageId = value;
 
  84      * Gets the value of the completed property.
 
  87     public boolean isCompleted() {
 
  92      * Sets the value of the completed property.
 
  95     public void setCompleted(boolean value) {
 
  96         this.completed = value;
 
 100      * Gets the value of the exception property.
 
 102      * @return possible object is {@link MsoExceptionCategory }
 
 105     public MsoExceptionCategory getException() {
 
 110      * Sets the value of the exception property.
 
 112      * @param value allowed object is {@link MsoExceptionCategory }
 
 115     public void setException(MsoExceptionCategory value) {
 
 116         this.exception = value;
 
 120      * Gets the value of the errorMessage property.
 
 122      * @return possible object is {@link String }
 
 125     public String getErrorMessage() {
 
 130      * Sets the value of the errorMessage property.
 
 132      * @param value allowed object is {@link String }
 
 135     public void setErrorMessage(String value) {
 
 136         this.errorMessage = value;