package com.amalto.workbench.webservices; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for WSI18NString complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="WSI18NString"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="label" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="language" type="{http://www.talend.com/mdm}WSLanguage" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "WSI18NString", propOrder = { "label", "language" }) public class WSI18NString { protected String label; protected WSLanguage language; /** * Default no-arg constructor * */ public WSI18NString() { super(); } /** * Fully-initialising value constructor * */ public WSI18NString(final String label, final WSLanguage language) { this.label = label; this.language = language; } /** * Gets the value of the label property. * * @return * possible object is * {@link String } * */ public String getLabel() { return label; } /** * Sets the value of the label property. * * @param value * allowed object is * {@link String } * */ public void setLabel(String value) { this.label = value; } /** * Gets the value of the language property. * * @return * possible object is * {@link WSLanguage } * */ public WSLanguage getLanguage() { return language; } /** * Sets the value of the language property. * * @param value * allowed object is * {@link WSLanguage } * */ public void setLanguage(WSLanguage value) { this.language = value; } }