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

com.palominolabs.crm.sf.soap.jaxwsstub.metadata.CustomLabel 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 CustomLabel complex type. * *

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

 * <complexType name="CustomLabel">
 *   <complexContent>
 *     <extension base="{http://soap.sforce.com/2006/04/metadata}Metadata">
 *       <sequence>
 *         <element name="categories" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="language" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="protected" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="shortDescription" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="value" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CustomLabel", propOrder = { "categories", "language", "_protected", "shortDescription", "value" }) public class CustomLabel extends Metadata { protected String categories; @XmlElement(required = true) protected String language; @XmlElement(name = "protected") protected boolean _protected; @XmlElement(required = true) protected String shortDescription; @XmlElement(required = true) protected String value; /** * Gets the value of the categories property. * * @return * possible object is * {@link String } * */ public String getCategories() { return categories; } /** * Sets the value of the categories property. * * @param value * allowed object is * {@link String } * */ public void setCategories(String value) { this.categories = value; } /** * 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 protected property. * */ public boolean isProtected() { return _protected; } /** * Sets the value of the protected property. * */ public void setProtected(boolean value) { this._protected = value; } /** * Gets the value of the shortDescription property. * * @return * possible object is * {@link String } * */ public String getShortDescription() { return shortDescription; } /** * Sets the value of the shortDescription property. * * @param value * allowed object is * {@link String } * */ public void setShortDescription(String value) { this.shortDescription = 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