
com.adlibsoftware.client.ExceptionDetail Maven / Gradle / Ivy
package com.adlibsoftware.client;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElementRef;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for ExceptionDetail complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ExceptionDetail">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Message" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="StackTrace" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="Type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="InnerException" type="{http://schemas.datacontract.org/2004/07/Adlib.Public.Objects}ExceptionDetail" minOccurs="0"/>
* <element name="UserFeedback" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ExceptionDetail", namespace = "http://schemas.datacontract.org/2004/07/Adlib.Public.Objects", propOrder = {
"message",
"stackTrace",
"type",
"innerException",
"userFeedback"
})
public class ExceptionDetail {
@XmlElementRef(name = "Message", namespace = "http://schemas.datacontract.org/2004/07/Adlib.Public.Objects", type = JAXBElement.class, required = false)
protected JAXBElement message;
@XmlElementRef(name = "StackTrace", namespace = "http://schemas.datacontract.org/2004/07/Adlib.Public.Objects", type = JAXBElement.class, required = false)
protected JAXBElement stackTrace;
@XmlElementRef(name = "Type", namespace = "http://schemas.datacontract.org/2004/07/Adlib.Public.Objects", type = JAXBElement.class, required = false)
protected JAXBElement type;
@XmlElementRef(name = "InnerException", namespace = "http://schemas.datacontract.org/2004/07/Adlib.Public.Objects", type = JAXBElement.class, required = false)
protected JAXBElement innerException;
@XmlElementRef(name = "UserFeedback", namespace = "http://schemas.datacontract.org/2004/07/Adlib.Public.Objects", type = JAXBElement.class, required = false)
protected JAXBElement userFeedback;
/**
* Gets the value of the message property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement getMessage() {
return message;
}
/**
* Sets the value of the message property.
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setMessage(JAXBElement value) {
this.message = value;
}
/**
* Gets the value of the stackTrace property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement getStackTrace() {
return stackTrace;
}
/**
* Sets the value of the stackTrace property.
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setStackTrace(JAXBElement value) {
this.stackTrace = value;
}
/**
* Gets the value of the type property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement getType() {
return type;
}
/**
* Sets the value of the type property.
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setType(JAXBElement value) {
this.type = value;
}
/**
* Gets the value of the innerException property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link ExceptionDetail }{@code >}
*
*/
public JAXBElement getInnerException() {
return innerException;
}
/**
* Sets the value of the innerException property.
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link ExceptionDetail }{@code >}
*
*/
public void setInnerException(JAXBElement value) {
this.innerException = value;
}
/**
* Gets the value of the userFeedback property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement getUserFeedback() {
return userFeedback;
}
/**
* Sets the value of the userFeedback property.
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setUserFeedback(JAXBElement value) {
this.userFeedback = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy