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

com.sun.jbi.management.message.JbiTask 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.math.BigDecimal;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
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>
 *     <extension base="{http://java.sun.com/xml/ns/jbi/management-message}jbi-task-result">
 *       <attribute name="version" use="required" type="{http://www.w3.org/2001/XMLSchema}decimal" />
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "jbi-task") public class JbiTask extends JbiTaskResult { @XmlAttribute(name = "version", required = true) protected BigDecimal version; /** * Obtient la valeur de la propriété version. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getVersion() { return version; } /** * Définit la valeur de la propriété version. * * @param value * allowed object is * {@link BigDecimal } * */ public void setVersion(BigDecimal value) { this.version = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy