checkmarx.wsdl.portal.CxWSQueryLanguageState Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cx-spring-boot-sdk Show documentation
Show all versions of cx-spring-boot-sdk Show documentation
Checkmarx Java Spring Boot SDK
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-646
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2017.11.17 at 10:51:56 PM EST
//
package checkmarx.wsdl.portal;
import javax.xml.bind.annotation.*;
import javax.xml.datatype.XMLGregorianCalendar;
/**
* Java class for CxWSQueryLanguageState complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CxWSQueryLanguageState">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="LanguageID" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="LanguageName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="LanguageHash" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="StateCreationDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CxWSQueryLanguageState", propOrder = {
"languageID",
"languageName",
"languageHash",
"stateCreationDate"
})
public class CxWSQueryLanguageState {
@XmlElement(name = "LanguageID")
protected int languageID;
@XmlElement(name = "LanguageName")
protected String languageName;
@XmlElement(name = "LanguageHash")
protected String languageHash;
@XmlElement(name = "StateCreationDate", required = true)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar stateCreationDate;
/**
* Gets the value of the languageID property.
*
*/
public int getLanguageID() {
return languageID;
}
/**
* Sets the value of the languageID property.
*
*/
public void setLanguageID(int value) {
this.languageID = value;
}
/**
* Gets the value of the languageName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLanguageName() {
return languageName;
}
/**
* Sets the value of the languageName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLanguageName(String value) {
this.languageName = value;
}
/**
* Gets the value of the languageHash property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLanguageHash() {
return languageHash;
}
/**
* Sets the value of the languageHash property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLanguageHash(String value) {
this.languageHash = value;
}
/**
* Gets the value of the stateCreationDate property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getStateCreationDate() {
return stateCreationDate;
}
/**
* Sets the value of the stateCreationDate property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setStateCreationDate(XMLGregorianCalendar value) {
this.stateCreationDate = value;
}
}