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=========================================================
22 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7
23 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
24 // Any modifications to this file will be lost upon recompilation of the source schema.
25 // Generated on: 2016.05.03 at 03:56:30 PM CDT
29 package org.openecomp.mso.apihandlerinfra.serviceinstancebeans;
31 import java.util.ArrayList;
32 import java.util.List;
33 import javax.xml.bind.annotation.XmlAccessType;
34 import javax.xml.bind.annotation.XmlAccessorType;
35 import javax.xml.bind.annotation.XmlElement;
36 import javax.xml.bind.annotation.XmlSeeAlso;
37 import javax.xml.bind.annotation.XmlType;
41 * <p>Java class for exceptionType complex type.
43 * <p>The following schema fragment specifies the expected content contained within this class.
46 * <complexType name="exceptionType">
48 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
50 * <element name="messageId" type="{http://www.w3.org/2001/XMLSchema}string"/>
51 * <element name="text" type="{http://www.w3.org/2001/XMLSchema}string"/>
52 * <element name="variables" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="50" minOccurs="0"/>
55 * </complexContent>
61 @XmlAccessorType(XmlAccessType.FIELD)
62 @XmlType(name = "exceptionType", propOrder = {
68 ServiceException.class,
71 public class ExceptionType {
73 @XmlElement(required = true)
74 protected String messageId;
75 @XmlElement(required = true)
76 protected String text;
77 protected List<String> variables;
80 * Gets the value of the messageId property.
87 public String getMessageId() {
92 * Sets the value of the messageId property.
99 public void setMessageId(String value) {
100 this.messageId = value;
104 * Gets the value of the text property.
111 public String getText() {
116 * Sets the value of the text property.
123 public void setText(String value) {
128 * Gets the value of the variables property.
131 * This accessor method returns a reference to the live list,
132 * not a snapshot. Therefore any modification you make to the
133 * returned list will be present inside the JAXB object.
134 * This is why there is not a <CODE>set</CODE> method for the variables property.
137 * For example, to add a new item, do as follows:
139 * getVariables().add(newItem);
144 * Objects of the following type(s) are allowed in the list
149 public List<String> getVariables() {
150 if (variables == null) {
151 variables = new ArrayList<>();
153 return this.variables;