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

net.datastream.schemas.mp_fields.ERECSETUPID Maven / Gradle / Ivy


package net.datastream.schemas.mp_fields;

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://schemas.datastream.net/MP_fields}ERECSETUPCODE"/>
 *         <element ref="{http://schemas.datastream.net/MP_fields}FROMSTATUS"/>
 *         <element ref="{http://schemas.datastream.net/MP_fields}TOSTATUS"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "erecsetupcode", "fromstatus", "tostatus" }) @XmlRootElement(name = "ERECSETUPID") public class ERECSETUPID { @XmlElement(name = "ERECSETUPCODE", required = true) protected String erecsetupcode; @XmlElement(name = "FROMSTATUS", required = true) protected String fromstatus; @XmlElement(name = "TOSTATUS", required = true) protected String tostatus; /** * Obtient la valeur de la propriété erecsetupcode. * * @return * possible object is * {@link String } * */ public String getERECSETUPCODE() { return erecsetupcode; } /** * Définit la valeur de la propriété erecsetupcode. * * @param value * allowed object is * {@link String } * */ public void setERECSETUPCODE(String value) { this.erecsetupcode = value; } /** * Obtient la valeur de la propriété fromstatus. * * @return * possible object is * {@link String } * */ public String getFROMSTATUS() { return fromstatus; } /** * Définit la valeur de la propriété fromstatus. * * @param value * allowed object is * {@link String } * */ public void setFROMSTATUS(String value) { this.fromstatus = value; } /** * Obtient la valeur de la propriété tostatus. * * @return * possible object is * {@link String } * */ public String getTOSTATUS() { return tostatus; } /** * Définit la valeur de la propriété tostatus. * * @param value * allowed object is * {@link String } * */ public void setTOSTATUS(String value) { this.tostatus = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy