Subversion Repositories XServices

Compare Revisions

No changes between revisions

Ignore whitespace Rev 29 → Rev 30

/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/ItemLink.java
0,0 → 1,178
 
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;
 
 
/**
* <p>Java class for ItemLink complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="ItemLink">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="id" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
* &lt;element name="itemID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="linkType" type="{urn:aewebservices71}ItemLink-Type"/>
* &lt;element name="modificationDateTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* &lt;element name="accessType" type="{urn:aewebservices71}Attachment-Access-Type"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@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<String> 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<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 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;
}
 
}
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property