com.ibm.rqm.xml.bind.Error Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of demoiselle-behave-integration-alm Show documentation
Show all versions of demoiselle-behave-integration-alm Show documentation
Demoiselle Behave Integration - ALM
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2015.07.13 at 12:00:05 PM BRT
//
package com.ibm.rqm.xml.bind;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* 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="statusCode" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="message" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="trace" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"statusCode",
"message",
"trace"
})
@XmlRootElement(name = "Error")
public class Error {
protected Integer statusCode;
protected String message;
protected String trace;
/**
* Gets the value of the statusCode property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getStatusCode() {
return statusCode;
}
/**
* Sets the value of the statusCode property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setStatusCode(Integer value) {
this.statusCode = value;
}
/**
* Gets the value of the message property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMessage() {
return message;
}
/**
* Sets the value of the message property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMessage(String value) {
this.message = value;
}
/**
* Gets the value of the trace property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTrace() {
return trace;
}
/**
* Sets the value of the trace property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTrace(String value) {
this.trace = value;
}
}