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

com.sun.jbi.management.message.JbiTaskResultElement 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;


/**
 * 

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

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

 * <element name="jbi-task-result">
 *   <complexType>
 *     <complexContent>
 *       <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *         <sequence>
 *           <element ref="{http://java.sun.com/xml/ns/jbi/management-message}frmwk-task-result"/>
 *           <element ref="{http://java.sun.com/xml/ns/jbi/management-message}component-task-result" maxOccurs="unbounded" minOccurs="0"/>
 *         </sequence>
 *       </restriction>
 *     </complexContent>
 *   </complexType>
 * </element>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "frmwkTaskResult", "componentTaskResult" }) @XmlRootElement(name = "jbi-task-result") public class JbiTaskResultElement { @XmlElement(name = "frmwk-task-result", required = true) protected FrmwkTaskResult frmwkTaskResult; @XmlElement(name = "component-task-result") protected List componentTaskResult; /** * Obtient la valeur de la propriété frmwkTaskResult. * * @return * possible object is * {@link FrmwkTaskResult } * */ public FrmwkTaskResult getFrmwkTaskResult() { return frmwkTaskResult; } /** * Définit la valeur de la propriété frmwkTaskResult. * * @param value * allowed object is * {@link FrmwkTaskResult } * */ public void setFrmwkTaskResult(FrmwkTaskResult value) { this.frmwkTaskResult = value; } /** * Gets the value of the componentTaskResult 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 componentTaskResult property. * *

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

     *    getComponentTaskResult().add(newItem);
     * 
* * *

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





© 2015 - 2024 Weber Informatics LLC | Privacy Policy