![JAR search and dependency download from the Maven repository](/logo.png)
com.sforce.soap.partner.QueryResponse Maven / Gradle / Ivy
package com.sforce.soap.partner;
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="result" type="{urn:partner.soap.sforce.com}QueryResult"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"result"
})
@XmlRootElement(name = "queryResponse")
public class QueryResponse {
@XmlElement(required = true)
protected QueryResult result;
/**
* Gets the value of the result property.
*
* @return
* possible object is
* {@link QueryResult }
*
*/
public QueryResult getResult() {
return result;
}
/**
* Sets the value of the result property.
*
* @param value
* allowed object is
* {@link QueryResult }
*
*/
public void setResult(QueryResult value) {
this.result = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy