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

com.sforce.soap.partner.NameCaseValue 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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for NameCaseValue complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="NameCaseValue">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="article" type="{urn:partner.soap.sforce.com}Article"/>
 *         <element name="caseType" type="{urn:partner.soap.sforce.com}CaseType"/>
 *         <element name="number" type="{urn:partner.soap.sforce.com}GrammaticalNumber"/>
 *         <element name="possessive" type="{urn:partner.soap.sforce.com}Possessive"/>
 *         <element name="value" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "NameCaseValue", propOrder = { "article", "caseType", "number", "possessive", "value" }) public class NameCaseValue { @XmlElement(required = true, nillable = true) @XmlSchemaType(name = "string") protected Article article; @XmlElement(required = true, nillable = true) @XmlSchemaType(name = "string") protected CaseType caseType; @XmlElement(required = true, nillable = true) @XmlSchemaType(name = "string") protected GrammaticalNumber number; @XmlElement(required = true, nillable = true) @XmlSchemaType(name = "string") 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 number property. * * @return * possible object is * {@link GrammaticalNumber } * */ public GrammaticalNumber getNumber() { return number; } /** * Sets the value of the number property. * * @param value * allowed object is * {@link GrammaticalNumber } * */ public void setNumber(GrammaticalNumber value) { this.number = 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