com.sforce.soap.partner.Retrieve Maven / Gradle / Ivy
package com.sforce.soap.partner;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="fieldList" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="sObjectType" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="ids" type="{urn:partner.soap.sforce.com}ID" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"fieldList",
"sObjectType",
"ids"
})
@XmlRootElement(name = "retrieve")
public class Retrieve {
@XmlElement(required = true)
protected String fieldList;
@XmlElement(required = true)
protected String sObjectType;
protected List ids;
/**
* Gets the value of the fieldList property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFieldList() {
return fieldList;
}
/**
* Sets the value of the fieldList property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFieldList(String value) {
this.fieldList = value;
}
/**
* Gets the value of the sObjectType property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSObjectType() {
return sObjectType;
}
/**
* Sets the value of the sObjectType property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSObjectType(String value) {
this.sObjectType = value;
}
/**
* Gets the value of the ids 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 ids property.
*
*
* For example, to add a new item, do as follows:
*
* getIds().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getIds() {
if (ids == null) {
ids = new ArrayList();
}
return this.ids;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy