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

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

There is a newer version: 12.1-4
Show newest version

package net.datastream.schemas.mp_fields;

import java.math.BigInteger;
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.XmlSchemaType;
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 name="PURCHASEORDER" type="{http://schemas.datastream.net/MP_fields}CODE30_Type"/>
 *         <element ref="{http://schemas.datastream.net/MP_fields}ORGANIZATIONID" minOccurs="0"/>
 *         <element name="PURCHASEORDERLINE" type="{http://www.w3.org/2001/XMLSchema}positiveInteger"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "purchaseorder", "organizationid", "purchaseorderline" }) @XmlRootElement(name = "PURCHASEORDERINFO") public class PURCHASEORDERINFO { @XmlElement(name = "PURCHASEORDER", required = true) protected String purchaseorder; @XmlElement(name = "ORGANIZATIONID") protected ORGANIZATIONID_Type organizationid; @XmlElement(name = "PURCHASEORDERLINE", required = true) @XmlSchemaType(name = "positiveInteger") protected BigInteger purchaseorderline; /** * Obtient la valeur de la propriété purchaseorder. * * @return * possible object is * {@link String } * */ public String getPURCHASEORDER() { return purchaseorder; } /** * Définit la valeur de la propriété purchaseorder. * * @param value * allowed object is * {@link String } * */ public void setPURCHASEORDER(String value) { this.purchaseorder = value; } /** * Obtient la valeur de la propriété organizationid. * * @return * possible object is * {@link ORGANIZATIONID_Type } * */ public ORGANIZATIONID_Type getORGANIZATIONID() { return organizationid; } /** * Définit la valeur de la propriété organizationid. * * @param value * allowed object is * {@link ORGANIZATIONID_Type } * */ public void setORGANIZATIONID(ORGANIZATIONID_Type value) { this.organizationid = value; } /** * Obtient la valeur de la propriété purchaseorderline. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getPURCHASEORDERLINE() { return purchaseorderline; } /** * Définit la valeur de la propriété purchaseorderline. * * @param value * allowed object is * {@link BigInteger } * */ public void setPURCHASEORDERLINE(BigInteger value) { this.purchaseorderline = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy