All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sforce.soap.tooling.ApiQueryFault Maven / Gradle / Ivy

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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy