com.sforce.soap.partner.SoqlNotCondition 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.XmlType;
/**
* Java class for SoqlNotCondition complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="SoqlNotCondition">
* <complexContent>
* <extension base="{urn:partner.soap.sforce.com}SoqlWhereCondition">
* <sequence>
* <element name="condition" type="{urn:partner.soap.sforce.com}SoqlWhereCondition"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SoqlNotCondition", propOrder = {
"condition"
})
public class SoqlNotCondition
extends SoqlWhereCondition
{
@XmlElement(required = true)
protected SoqlWhereCondition condition;
/**
* Gets the value of the condition property.
*
* @return
* possible object is
* {@link SoqlWhereCondition }
*
*/
public SoqlWhereCondition getCondition() {
return condition;
}
/**
* Sets the value of the condition property.
*
* @param value
* allowed object is
* {@link SoqlWhereCondition }
*
*/
public void setCondition(SoqlWhereCondition value) {
this.condition = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy