com.sforce.soap.tooling.ApiQueryFault Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sforce-tooling-api Show documentation
Show all versions of sforce-tooling-api Show documentation
Salesforce Tooling API client
The newest version!
package com.sforce.soap.tooling;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for ApiQueryFault complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ApiQueryFault">
* <complexContent>
* <extension base="{urn:tooling.soap.sforce.com}ApiFault">
* <sequence>
* <element name="row" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="column" type="{http://www.w3.org/2001/XMLSchema}int"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ApiQueryFault", propOrder = {
"row",
"column"
})
@XmlSeeAlso({
InvalidFieldFault.class,
InvalidSObjectFault.class,
MalformedQueryFault.class,
MalformedSearchFault.class
})
public class ApiQueryFault
extends ApiFault
{
protected int row;
protected int column;
/**
* Gets the value of the row property.
*
*/
public int getRow() {
return row;
}
/**
* Sets the value of the row property.
*
*/
public void setRow(int value) {
this.row = value;
}
/**
* Gets the value of the column property.
*
*/
public int getColumn() {
return column;
}
/**
* Sets the value of the column property.
*
*/
public void setColumn(int value) {
this.column = value;
}
}