![JAR search and dependency download from the Maven repository](/logo.png)
com.sforce.soap.partner.LocaleOptions 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.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="language" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="localizeErrors" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"language",
"localizeErrors"
})
@XmlRootElement(name = "LocaleOptions")
public class LocaleOptions {
protected String language;
protected Boolean localizeErrors;
/**
* Gets the value of the language property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLanguage() {
return language;
}
/**
* Sets the value of the language property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLanguage(String value) {
this.language = value;
}
/**
* Gets the value of the localizeErrors property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isLocalizeErrors() {
return localizeErrors;
}
/**
* Sets the value of the localizeErrors property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setLocalizeErrors(Boolean value) {
this.localizeErrors = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy