
com.palominolabs.crm.sf.soap.jaxwsstub.metadata.ObjectNameCaseValue 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 ObjectNameCaseValue complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ObjectNameCaseValue">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="article" type="{http://soap.sforce.com/2006/04/metadata}Article" minOccurs="0"/>
* <element name="caseType" type="{http://soap.sforce.com/2006/04/metadata}CaseType" minOccurs="0"/>
* <element name="plural" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="possessive" type="{http://soap.sforce.com/2006/04/metadata}Possessive" minOccurs="0"/>
* <element name="value" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ObjectNameCaseValue", propOrder = {
"article",
"caseType",
"plural",
"possessive",
"value"
})
public class ObjectNameCaseValue {
protected Article article;
protected CaseType caseType;
protected Boolean plural;
protected Possessive possessive;
@XmlElement(required = true)
protected String value;
/**
* Gets the value of the article property.
*
* @return
* possible object is
* {@link Article }
*
*/
public Article getArticle() {
return article;
}
/**
* Sets the value of the article property.
*
* @param value
* allowed object is
* {@link Article }
*
*/
public void setArticle(Article value) {
this.article = value;
}
/**
* Gets the value of the caseType property.
*
* @return
* possible object is
* {@link CaseType }
*
*/
public CaseType getCaseType() {
return caseType;
}
/**
* Sets the value of the caseType property.
*
* @param value
* allowed object is
* {@link CaseType }
*
*/
public void setCaseType(CaseType value) {
this.caseType = value;
}
/**
* Gets the value of the plural property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isPlural() {
return plural;
}
/**
* Sets the value of the plural property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setPlural(Boolean value) {
this.plural = value;
}
/**
* Gets the value of the possessive property.
*
* @return
* possible object is
* {@link Possessive }
*
*/
public Possessive getPossessive() {
return possessive;
}
/**
* Sets the value of the possessive property.
*
* @param value
* allowed object is
* {@link Possessive }
*
*/
public void setPossessive(Possessive value) {
this.possessive = value;
}
/**
* Gets the value of the value property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getValue() {
return value;
}
/**
* Sets the value of the value property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setValue(String value) {
this.value = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy