net.datastream.schemas.mp_functions.mp2072_001.ChangePartNumber Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eam-wshub-proxyclient Show documentation
Show all versions of eam-wshub-proxyclient Show documentation
JAX-WS aisws aisws generated from Infor EAM Web Services Toolkit WSDLs.
package net.datastream.schemas.mp_functions.mp2072_001;
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 net.datastream.schemas.mp_fields.CLASSID_Type;
import net.datastream.schemas.mp_fields.PARTID_Type;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element ref="{http://schemas.datastream.net/MP_fields}OLDPARTID"/>
* <element ref="{http://schemas.datastream.net/MP_fields}NEWPARTID" minOccurs="0"/>
* <element ref="{http://schemas.datastream.net/MP_fields}CLASSID" minOccurs="0"/>
* <element ref="{http://schemas.datastream.net/MP_fields}AUTOCREATE" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"oldpartid",
"newpartid",
"classid",
"autocreate"
})
@XmlRootElement(name = "ChangePartNumber")
public class ChangePartNumber {
@XmlElement(name = "OLDPARTID", namespace = "http://schemas.datastream.net/MP_fields", required = true)
protected PARTID_Type oldpartid;
@XmlElement(name = "NEWPARTID", namespace = "http://schemas.datastream.net/MP_fields")
protected PARTID_Type newpartid;
@XmlElement(name = "CLASSID", namespace = "http://schemas.datastream.net/MP_fields")
protected CLASSID_Type classid;
@XmlElement(name = "AUTOCREATE", namespace = "http://schemas.datastream.net/MP_fields")
protected String autocreate;
/**
* Gets the value of the oldpartid property.
*
* @return
* possible object is
* {@link PARTID_Type }
*
*/
public PARTID_Type getOLDPARTID() {
return oldpartid;
}
/**
* Sets the value of the oldpartid property.
*
* @param value
* allowed object is
* {@link PARTID_Type }
*
*/
public void setOLDPARTID(PARTID_Type value) {
this.oldpartid = value;
}
/**
* Gets the value of the newpartid property.
*
* @return
* possible object is
* {@link PARTID_Type }
*
*/
public PARTID_Type getNEWPARTID() {
return newpartid;
}
/**
* Sets the value of the newpartid property.
*
* @param value
* allowed object is
* {@link PARTID_Type }
*
*/
public void setNEWPARTID(PARTID_Type value) {
this.newpartid = value;
}
/**
* Gets the value of the classid property.
*
* @return
* possible object is
* {@link CLASSID_Type }
*
*/
public CLASSID_Type getCLASSID() {
return classid;
}
/**
* Sets the value of the classid property.
*
* @param value
* allowed object is
* {@link CLASSID_Type }
*
*/
public void setCLASSID(CLASSID_Type value) {
this.classid = value;
}
/**
* Gets the value of the autocreate property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAUTOCREATE() {
return autocreate;
}
/**
* Sets the value of the autocreate property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAUTOCREATE(String value) {
this.autocreate = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy