/* * Copyright 2014 JBoss Inc * * 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. */ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2015.04.07 at 04:41:42 PM EDT // package org.oasis_open.docs.s_ramp.ns.s_ramp_v1; import java.io.Serializable; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="howtofix" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="detail" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * <attribute name="responseCode" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="uuid" type="{http://www.w3.org/2001/XMLSchema}string" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "description", "howtofix", "detail" }) @XmlRootElement(name = "error") public class Error implements Serializable { private static final long serialVersionUID = -6193294637632784726L; @XmlElement(required = true) protected String description; protected String howtofix; protected String detail; @XmlAttribute(name = "responseCode", required = true) protected String responseCode; @XmlAttribute(name = "name", required = true) protected String name; @XmlAttribute(name = "uuid") protected String uuid; /** * Gets the value of the description property. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = value; } /** * Gets the value of the howtofix property. * * @return * possible object is * {@link String } * */ public String getHowtofix() { return howtofix; } /** * Sets the value of the howtofix property. * * @param value * allowed object is * {@link String } * */ public void setHowtofix(String value) { this.howtofix = value; } /** * Gets the value of the detail property. * * @return * possible object is * {@link String } * */ public String getDetail() { return detail; } /** * Sets the value of the detail property. * * @param value * allowed object is * {@link String } * */ public void setDetail(String value) { this.detail = value; } /** * Gets the value of the responseCode property. * * @return * possible object is * {@link String } * */ public String getResponseCode() { return responseCode; } /** * Sets the value of the responseCode property. * * @param value * allowed object is * {@link String } * */ public void setResponseCode(String value) { this.responseCode = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the uuid property. * * @return * possible object is * {@link String } * */ public String getUuid() { return uuid; } /** * Sets the value of the uuid property. * * @param value * allowed object is * {@link String } * */ public void setUuid(String value) { this.uuid = value; } }