View as "text/plain" | Blame | Last modification | View Log | Download | RSS feed
package net.brutex.sbm.wsclient;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElementRef;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for Item complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="Item">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="itemID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="itemUUID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="itemName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Item", propOrder = {
"itemID",
"itemUUID",
"itemName"
})
public class Item {
@XmlElementRef(name = "itemID", namespace = "urn:aewebservices71", type = JAXBElement.class)
protected JAXBElement<String> itemID;
@XmlElementRef(name = "itemUUID", namespace = "urn:aewebservices71", type = JAXBElement.class)
protected JAXBElement<String> itemUUID;
@XmlElementRef(name = "itemName", namespace = "urn:aewebservices71", type = JAXBElement.class)
protected JAXBElement<String> itemName;
/**
* Gets the value of the itemID property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getItemID() {
return itemID;
}
/**
* Sets the value of the itemID property.
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setItemID(JAXBElement<String> value) {
this.itemID = ((JAXBElement<String> ) value);
}
/**
* Gets the value of the itemUUID property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getItemUUID() {
return itemUUID;
}
/**
* Sets the value of the itemUUID property.
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setItemUUID(JAXBElement<String> value) {
this.itemUUID = ((JAXBElement<String> ) value);
}
/**
* Gets the value of the itemName property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getItemName() {
return itemName;
}
/**
* Sets the value of the itemName property.
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setItemName(JAXBElement<String> value) {
this.itemName = ((JAXBElement<String> ) value);
}
}