org.gs4tr.projectdirector.model.dto.xsd.Date 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.XmlType;
/**
* Java class for Date complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Date">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="critical" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="date" type="{http://www.w3.org/2001/XMLSchema}long"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Date", propOrder = {
"critical",
"date"
})
public class Date {
protected boolean critical;
protected long date;
/**
* Gets the value of the critical property.
*
*/
public boolean isCritical() {
return critical;
}
/**
* Sets the value of the critical property.
*
*/
public void setCritical(boolean value) {
this.critical = value;
}
/**
* Gets the value of the date property.
*
*/
public long getDate() {
return date;
}
/**
* Sets the value of the date property.
*
*/
public void setDate(long value) {
this.date = value;
}
}