package net.brutex.sbm.wsclient; import java.math.BigInteger; import javax.xml.bind.JAXBElement; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElementRef; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; /** *

Java class for ItemLink complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="ItemLink">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
 *         <element name="itemID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="linkType" type="{urn:aewebservices71}ItemLink-Type"/>
 *         <element name="modificationDateTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *         <element name="accessType" type="{urn:aewebservices71}Attachment-Access-Type"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ItemLink", propOrder = { "id", "itemID", "linkType", "modificationDateTime", "accessType" }) public class ItemLink { protected BigInteger id; @XmlElementRef(name = "itemID", namespace = "urn:aewebservices71", type = JAXBElement.class) protected JAXBElement itemID; @XmlElement(required = true, defaultValue = "DEFAULT-ITEM-LINK") protected ItemLinkType linkType; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar modificationDateTime; @XmlElement(required = true, defaultValue = "ATTACHACCESS-DEFAULT") protected AttachmentAccessType accessType; /** * Gets the value of the id property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link BigInteger } * */ public void setId(BigInteger value) { this.id = value; } /** * Gets the value of the itemID property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public JAXBElement 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 value) { this.itemID = ((JAXBElement ) value); } /** * Gets the value of the linkType property. * * @return * possible object is * {@link ItemLinkType } * */ public ItemLinkType getLinkType() { return linkType; } /** * Sets the value of the linkType property. * * @param value * allowed object is * {@link ItemLinkType } * */ public void setLinkType(ItemLinkType value) { this.linkType = value; } /** * Gets the value of the modificationDateTime property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getModificationDateTime() { return modificationDateTime; } /** * Sets the value of the modificationDateTime property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setModificationDateTime(XMLGregorianCalendar value) { this.modificationDateTime = value; } /** * Gets the value of the accessType property. * * @return * possible object is * {@link AttachmentAccessType } * */ public AttachmentAccessType getAccessType() { return accessType; } /** * Sets the value of the accessType property. * * @param value * allowed object is * {@link AttachmentAccessType } * */ public void setAccessType(AttachmentAccessType value) { this.accessType = value; } }