![JAR search and dependency download from the Maven repository](/logo.png)
com.sforce.soap.partner.DescribeGlobalResult 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.XmlType;
/**
* Java class for DescribeGlobalResult complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="DescribeGlobalResult">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="encoding" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="maxBatchSize" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="sobjects" type="{urn:partner.soap.sforce.com}DescribeGlobalSObjectResult" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DescribeGlobalResult", propOrder = {
"encoding",
"maxBatchSize",
"sobjects"
})
public class DescribeGlobalResult {
@XmlElement(required = true, nillable = true)
protected String encoding;
protected int maxBatchSize;
protected List sobjects;
/**
* Gets the value of the encoding property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEncoding() {
return encoding;
}
/**
* Sets the value of the encoding property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEncoding(String value) {
this.encoding = value;
}
/**
* Gets the value of the maxBatchSize property.
*
*/
public int getMaxBatchSize() {
return maxBatchSize;
}
/**
* Sets the value of the maxBatchSize property.
*
*/
public void setMaxBatchSize(int value) {
this.maxBatchSize = value;
}
/**
* Gets the value of the sobjects 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 sobjects property.
*
*
* For example, to add a new item, do as follows:
*
* getSobjects().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link DescribeGlobalSObjectResult }
*
*
*/
public List getSobjects() {
if (sobjects == null) {
sobjects = new ArrayList();
}
return this.sobjects;
}
}