All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.sugarcrm.ws.soap.Array Maven / Gradle / Ivy
package com.sugarcrm.ws.soap;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAnyAttribute;
import javax.xml.bind.annotation.XmlAnyElement;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlID;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.namespace.QName;
import org.w3c.dom.Element;
/**
*
* 'Array' is a complex type for accessors identified by position
*
*
* Java class for Array complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Array">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <group ref="{http://schemas.xmlsoap.org/soap/encoding/}Array" minOccurs="0"/>
* <attGroup ref="{http://schemas.xmlsoap.org/soap/encoding/}commonAttributes"/>
* <attGroup ref="{http://schemas.xmlsoap.org/soap/encoding/}arrayAttributes"/>
* <anyAttribute processContents='lax' namespace='##other'/>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Array", namespace = "http://schemas.xmlsoap.org/soap/encoding/", propOrder = {
"any"
})
@XmlSeeAlso({
LinkArrayList.class,
Md5Results.class,
SelectFields.class,
DeletedArray.class,
EntryList.class,
FieldList.class,
AclList.class,
NameValueList.class,
ModuleListArray.class,
LinkValue.class,
ReportFieldList.class,
SearchLinkArrayList.class,
ModuleNames.class,
LinkNamesToFieldsArray.class,
LinkLists.class,
ReportEntryList.class,
NewSetRelationhipIds.class,
LastViewedList.class,
LinkList.class,
NameValueLists.class,
SearchLinkList.class,
LinkFieldList.class,
UpcomingActivitiesList.class
})
public class Array {
@XmlAnyElement(lax = true)
protected List any;
@XmlAttribute(name = "id")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlID
@XmlSchemaType(name = "ID")
protected java.lang.String id;
@XmlAttribute(name = "href")
@XmlSchemaType(name = "anyURI")
protected java.lang.String href;
@XmlAttribute(name = "arrayType", namespace = "http://schemas.xmlsoap.org/soap/encoding/")
protected java.lang.String arrayType;
@XmlAttribute(name = "offset", namespace = "http://schemas.xmlsoap.org/soap/encoding/")
protected java.lang.String offset;
@XmlAnyAttribute
private Map otherAttributes = new HashMap();
/**
* Gets the value of the any property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the any property.
*
*
* For example, to add a new item, do as follows:
*
* getAny().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Object }
* {@link Element }
*
*
*/
public List getAny() {
if (any == null) {
any = new ArrayList();
}
return this.any;
}
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link java.lang.String }
*
*/
public java.lang.String getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link java.lang.String }
*
*/
public void setId(java.lang.String value) {
this.id = value;
}
/**
* Gets the value of the href property.
*
* @return
* possible object is
* {@link java.lang.String }
*
*/
public java.lang.String getHref() {
return href;
}
/**
* Sets the value of the href property.
*
* @param value
* allowed object is
* {@link java.lang.String }
*
*/
public void setHref(java.lang.String value) {
this.href = value;
}
/**
* Gets the value of the arrayType property.
*
* @return
* possible object is
* {@link java.lang.String }
*
*/
public java.lang.String getArrayType() {
return arrayType;
}
/**
* Sets the value of the arrayType property.
*
* @param value
* allowed object is
* {@link java.lang.String }
*
*/
public void setArrayType(java.lang.String value) {
this.arrayType = value;
}
/**
* Gets the value of the offset property.
*
* @return
* possible object is
* {@link java.lang.String }
*
*/
public java.lang.String getOffset() {
return offset;
}
/**
* Sets the value of the offset property.
*
* @param value
* allowed object is
* {@link java.lang.String }
*
*/
public void setOffset(java.lang.String value) {
this.offset = value;
}
/**
* Gets a map that contains attributes that aren't bound to any typed property on this class.
*
*
* the map is keyed by the name of the attribute and
* the value is the string value of the attribute.
*
* the map returned by this method is live, and you can add new attribute
* by updating the map directly. Because of this design, there's no setter.
*
*
* @return
* always non-null
*/
public Map getOtherAttributes() {
return otherAttributes;
}
}