org.gs4tr.projectdirector.model.dto.xsd.ProjectLanguage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of globallink-connect-api Show documentation
Show all versions of globallink-connect-api Show documentation
GlobalLink Connect Java is a library to connect your system to GlobalLink Project Director SOAP API.
The newest version!
package org.gs4tr.projectdirector.model.dto.xsd;
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 ProjectLanguage complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ProjectLanguage">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="customLocaleCode" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="localeCode" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ProjectLanguage", propOrder = {
"customLocaleCode",
"localeCode"
})
public class ProjectLanguage {
@XmlElement(required = true, nillable = true)
protected String customLocaleCode;
@XmlElement(required = true, nillable = true)
protected String localeCode;
/**
* Gets the value of the customLocaleCode property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCustomLocaleCode() {
return customLocaleCode;
}
/**
* Sets the value of the customLocaleCode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCustomLocaleCode(String value) {
this.customLocaleCode = value;
}
/**
* Gets the value of the localeCode property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLocaleCode() {
return localeCode;
}
/**
* Sets the value of the localeCode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLocaleCode(String value) {
this.localeCode = value;
}
}