com.sun.jbi.management.message.ExceptionInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of manage Show documentation
Show all versions of manage Show documentation
JBI Runtime Management components, providing installation, deployment, and other JMX interfaces for
remote management consoles.
//
// Ce fichier a été généré par l'implémentation de référence JavaTM Architecture for XML Binding (JAXB), v2.2.6
// Voir http://java.sun.com/xml/jaxb
// Toute modification apportée à ce fichier sera perdue lors de la recompilation du schéma source.
// Généré le : 2014.12.02 à 10:42:44 AM CET
//
package com.sun.jbi.management.message;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* Classe Java pour anonymous complex type.
*
*
Le fragment de schéma suivant indique le contenu attendu figurant dans cette classe.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element ref="{http://java.sun.com/xml/ns/jbi/management-message}nesting-level"/>
* <element ref="{http://java.sun.com/xml/ns/jbi/management-message}msg-loc-info"/>
* <element ref="{http://java.sun.com/xml/ns/jbi/management-message}stack-trace"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"nestingLevel",
"msgLocInfo",
"stackTrace"
})
@XmlRootElement(name = "exception-info")
public class ExceptionInfo {
@XmlElement(name = "nesting-level", required = true)
protected String nestingLevel;
@XmlElement(name = "msg-loc-info", required = true)
protected MsgLocInfo msgLocInfo;
@XmlElement(name = "stack-trace", required = true)
protected String stackTrace;
/**
* Obtient la valeur de la propriété nestingLevel.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNestingLevel() {
return nestingLevel;
}
/**
* Définit la valeur de la propriété nestingLevel.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNestingLevel(String value) {
this.nestingLevel = value;
}
/**
* Obtient la valeur de la propriété msgLocInfo.
*
* @return
* possible object is
* {@link MsgLocInfo }
*
*/
public MsgLocInfo getMsgLocInfo() {
return msgLocInfo;
}
/**
* Définit la valeur de la propriété msgLocInfo.
*
* @param value
* allowed object is
* {@link MsgLocInfo }
*
*/
public void setMsgLocInfo(MsgLocInfo value) {
this.msgLocInfo = value;
}
/**
* Obtient la valeur de la propriété stackTrace.
*
* @return
* possible object is
* {@link String }
*
*/
public String getStackTrace() {
return stackTrace;
}
/**
* Définit la valeur de la propriété stackTrace.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setStackTrace(String value) {
this.stackTrace = value;
}
}