Subversion Repositories XServices

Compare Revisions

No changes between revisions

Ignore whitespace Rev 29 → Rev 30

/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/URLAttachment.java
0,0 → 1,197
 
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 URLAttachment complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="URLAttachment">
* &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="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="url" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="showAsImage" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* &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 = "URLAttachment", propOrder = {
"id",
"name",
"url",
"showAsImage",
"modificationDateTime",
"accessType"
})
public class URLAttachment {
 
protected BigInteger id;
@XmlElementRef(name = "name", namespace = "urn:aewebservices71", type = JAXBElement.class)
protected JAXBElement<String> name;
@XmlElementRef(name = "url", namespace = "urn:aewebservices71", type = JAXBElement.class)
protected JAXBElement<String> url;
protected boolean showAsImage;
@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 name property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getName() {
return name;
}
 
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setName(JAXBElement<String> value) {
this.name = ((JAXBElement<String> ) value);
}
 
/**
* Gets the value of the url property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getUrl() {
return url;
}
 
/**
* Sets the value of the url property.
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setUrl(JAXBElement<String> value) {
this.url = ((JAXBElement<String> ) value);
}
 
/**
* Gets the value of the showAsImage property.
*
*/
public boolean isShowAsImage() {
return showAsImage;
}
 
/**
* Sets the value of the showAsImage property.
*
*/
public void setShowAsImage(boolean value) {
this.showAsImage = 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