All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sun.jbi.management.message.TaskResultDetailsElement Maven / Gradle / Ivy

Go to download

JBI Runtime Management components, providing installation, deployment, and other JMX interfaces for remote management consoles.

There is a newer version: 2.4.3
Show newest version
//
// 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 java.util.ArrayList;
import java.util.List;
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;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;


/**
 * 

Classe Java pour task-result-details element declaration. * *

Le fragment de schéma suivant indique le contenu attendu figurant dans cette classe. * *

 * <element name="task-result-details">
 *   <complexType>
 *     <complexContent>
 *       <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *         <sequence>
 *           <element ref="{http://java.sun.com/xml/ns/jbi/management-message}task-id"/>
 *           <element ref="{http://java.sun.com/xml/ns/jbi/management-message}task-result"/>
 *           <element ref="{http://java.sun.com/xml/ns/jbi/management-message}message-type" minOccurs="0"/>
 *           <element ref="{http://java.sun.com/xml/ns/jbi/management-message}task-status-msg" maxOccurs="unbounded" minOccurs="0"/>
 *           <element ref="{http://java.sun.com/xml/ns/jbi/management-message}exception-info" maxOccurs="unbounded" minOccurs="0"/>
 *         </sequence>
 *       </restriction>
 *     </complexContent>
 *   </complexType>
 * </element>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "taskId", "taskResult", "messageType", "taskStatusMsg", "exceptionInfo" }) @XmlRootElement(name = "task-result-details") public class TaskResultDetailsElement { @XmlElement(name = "task-id", required = true) protected String taskId; @XmlElement(name = "task-result", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String taskResult; @XmlElement(name = "message-type") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String messageType; @XmlElement(name = "task-status-msg") protected List taskStatusMsg; @XmlElement(name = "exception-info") protected List exceptionInfo; /** * Obtient la valeur de la propriété taskId. * * @return * possible object is * {@link String } * */ public String getTaskId() { return taskId; } /** * Définit la valeur de la propriété taskId. * * @param value * allowed object is * {@link String } * */ public void setTaskId(String value) { this.taskId = value; } /** * Obtient la valeur de la propriété taskResult. * * @return * possible object is * {@link String } * */ public String getTaskResult() { return taskResult; } /** * Définit la valeur de la propriété taskResult. * * @param value * allowed object is * {@link String } * */ public void setTaskResult(String value) { this.taskResult = value; } /** * Obtient la valeur de la propriété messageType. * * @return * possible object is * {@link String } * */ public String getMessageType() { return messageType; } /** * Définit la valeur de la propriété messageType. * * @param value * allowed object is * {@link String } * */ public void setMessageType(String value) { this.messageType = value; } /** * Gets the value of the taskStatusMsg property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the taskStatusMsg property. * *

* For example, to add a new item, do as follows: *

     *    getTaskStatusMsg().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link TaskStatusMsg } * * */ public List getTaskStatusMsg() { if (taskStatusMsg == null) { taskStatusMsg = new ArrayList(); } return this.taskStatusMsg; } /** * Gets the value of the exceptionInfo property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the exceptionInfo property. * *

* For example, to add a new item, do as follows: *

     *    getExceptionInfo().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link ExceptionInfo } * * */ public List getExceptionInfo() { if (exceptionInfo == null) { exceptionInfo = new ArrayList(); } return this.exceptionInfo; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy