/*- * ============LICENSE_START======================================================= * ONAP - SO * ================================================================================ * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * ============LICENSE_END========================================================= */ package org.openecomp.mso.bpmn.common.adapter.vnf; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

Java class for queryVnfNotification complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="queryVnfNotification">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="messageId" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="completed" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="exception" type="{http://org.openecomp.mso/vnfNotify}msoExceptionCategory" minOccurs="0"/>
 *         <element name="errorMessage" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="vnfExists" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="vnfId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="status" type="{http://org.openecomp.mso/vnfNotify}vnfStatus" minOccurs="0"/>
 *         <element name="outputs" minOccurs="0">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence>
 *                   <element name="entry" maxOccurs="unbounded" minOccurs="0">
 *                     <complexType>
 *                       <complexContent>
 *                         <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                           <sequence>
 *                             <element name="key" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *                             <element name="value" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *                           </sequence>
 *                         </restriction>
 *                       </complexContent>
 *                     </complexType>
 *                   </element>
 *                 </sequence>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "queryVnfNotification1", propOrder = { "messageId", "completed", "exception", "errorMessage", "vnfExists", "vnfId", "status", "outputs" }) public class QueryVnfNotification { @XmlElement(required = true) protected String messageId; protected boolean completed; protected MsoExceptionCategory exception; protected String errorMessage; protected Boolean vnfExists; protected String vnfId; protected VnfStatus status; protected QueryVnfNotification.Outputs outputs; /** * Gets the value of the messageId property. * * @return * possible object is * {@link String } * */ public String getMessageId() { return messageId; } /** * Sets the value of the messageId property. * * @param value * allowed object is * {@link String } * */ public void setMessageId(String value) { this.messageId = value; } /** * Gets the value of the completed property. * */ public boolean isCompleted() { return completed; } /** * Sets the value of the completed property. * */ public void setCompleted(boolean value) { this.completed = value; } /** * Gets the value of the exception property. * * @return * possible object is * {@link MsoExceptionCategory } * */ public MsoExceptionCategory getException() { return exception; } /** * Sets the value of the exception property. * * @param value * allowed object is * {@link MsoExceptionCategory } * */ public void setException(MsoExceptionCategory value) { this.exception = value; } /** * Gets the value of the errorMessage property. * * @return * possible object is * {@link String } * */ public String getErrorMessage() { return errorMessage; } /** * Sets the value of the errorMessage property. * * @param value * allowed object is * {@link String } * */ public void setErrorMessage(String value) { this.errorMessage = value; } /** * Gets the value of the vnfExists property. * * @return * possible object is * {@link Boolean } * */ public Boolean isVnfExists() { return vnfExists; } /** * Sets the value of the vnfExists property. * * @param value * allowed object is * {@link Boolean } * */ public void setVnfExists(Boolean value) { this.vnfExists = value; } /** * Gets the value of the vnfId property. * * @return * possible object is * {@link String } * */ public String getVnfId() { return vnfId; } /** * Sets the value of the vnfId property. * * @param value * allowed object is * {@link String } * */ public void setVnfId(String value) { this.vnfId = value; } /** * Gets the value of the status property. * * @return * possible object is * {@link VnfStatus } * */ public VnfStatus getStatus() { return status; } /** * Sets the value of the status property. * * @param value * allowed object is * {@link VnfStatus } * */ public void setStatus(VnfStatus value) { this.status = value; } /** * Gets the value of the outputs property. * * @return * possible object is * {@link QueryVnfNotification.Outputs } * */ public QueryVnfNotification.Outputs getOutputs() { return outputs; } /** * Sets the value of the outputs property. * * @param value * allowed object is * {@link QueryVnfNotification.Outputs } * */ public void setOutputs(QueryVnfNotification.Outputs value) { this.outputs = value; } /** *

Java class for anonymous complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

     * <complexType>
     *   <complexContent>
     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *       <sequence>
     *         <element name="entry" maxOccurs="unbounded" minOccurs="0">
     *           <complexType>
     *             <complexContent>
     *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *                 <sequence>
     *                   <element name="key" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
     *                   <element name="value" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
     *                 </sequence>
     *               </restriction>
     *             </complexContent>
     *           </complexType>
     *         </element>
     *       </sequence>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "entry" }) public static class Outputs { protected List entry; /** * Gets the value of the entry property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the entry property. * *

* For example, to add a new item, do as follows: *

         *    getEntry().add(newItem);
         * 
* * *

* Objects of the following type(s) are allowed in the list * {@link QueryVnfNotification.Outputs.Entry } * * */ public List getEntry() { if (entry == null) { entry = new ArrayList<>(); } return this.entry; } // Not a generated method public String toString() { StringBuilder out = new StringBuilder(); out.append("\n"); if (entry != null) { for (Entry e : entry) { out.append(e.toString()); out.append('\n'); } } out.append(""); return out.toString(); } /** *

Java class for anonymous complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

         * <complexType>
         *   <complexContent>
         *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
         *       <sequence>
         *         <element name="key" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         *         <element name="value" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         *       </sequence>
         *     </restriction>
         *   </complexContent>
         * </complexType>
         * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "key", "value" }) public static class Entry { protected String key; protected String value; /** * Gets the value of the key property. * * @return * possible object is * {@link String } * */ public String getKey() { return key; } /** * Sets the value of the key property. * * @param value * allowed object is * {@link String } * */ public void setKey(String value) { this.key = value; } /** * Gets the value of the value property. * * @return * possible object is * {@link String } * */ public String getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link String } * */ public void setValue(String value) { this.value = value; } // Not a generated method public String toString() { String entry = ""; entry = ""+ '\n' + " "+key+"" + '\n' + " "+value+"" + '\n' + ""; return entry; } } } // Not a generated method public String toString() { String queryVnfNotification = ""; if (exception==null) { queryVnfNotification = "" + '\n' + " "+messageId+"" + '\n' + " "+completed+"" + '\n' + " "+vnfExists+"" + '\n' + " "+vnfId+"" + '\n' + " "+status+"" + '\n' + (outputs == null ? "" : outputs.toString() + '\n') + ""; } else { queryVnfNotification = "" + '\n' + " "+messageId+"" + '\n' + " "+completed+"" + '\n' + (outputs == null ? "" : outputs.toString() + '\n') + " "+exception+"" + '\n' + " "+errorMessage+"" + '\n' + ""; } return queryVnfNotification; } }