
com.palominolabs.crm.sf.soap.jaxwsstub.metadata.FieldOverride Maven / Gradle / Ivy
The newest version!
package com.palominolabs.crm.sf.soap.jaxwsstub.metadata;
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 FieldOverride complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="FieldOverride">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="field" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="formula" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="literalValue" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "FieldOverride", propOrder = {
"field",
"formula",
"literalValue"
})
public class FieldOverride {
@XmlElement(required = true)
protected String field;
protected String formula;
protected String literalValue;
/**
* Gets the value of the field property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getField() {
return field;
}
/**
* Sets the value of the field property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setField(String value) {
this.field = value;
}
/**
* Gets the value of the formula property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFormula() {
return formula;
}
/**
* Sets the value of the formula property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFormula(String value) {
this.formula = value;
}
/**
* Gets the value of the literalValue property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLiteralValue() {
return literalValue;
}
/**
* Sets the value of the literalValue property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLiteralValue(String value) {
this.literalValue = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy