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 Note complex type. * *

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

 * <complexType name="Note">
 *   <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="title" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="note" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <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 = "Note", propOrder = { "id", "title", "note", "modificationDateTime", "accessType" }) public class Note { protected BigInteger id; @XmlElementRef(name = "title", namespace = "urn:aewebservices71", type = JAXBElement.class) protected JAXBElement title; @XmlElementRef(name = "note", namespace = "urn:aewebservices71", type = JAXBElement.class) protected JAXBElement note; @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 title property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public JAXBElement getTitle() { return title; } /** * Sets the value of the title property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public void setTitle(JAXBElement value) { this.title = ((JAXBElement ) value); } /** * Gets the value of the note property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public JAXBElement getNote() { return note; } /** * Sets the value of the note property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public void setNote(JAXBElement value) { this.note = ((JAXBElement ) 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; } }