org.gs4tr.projectdirector.model.dto.xsd.Announcement 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 Announcement complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Announcement">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="announcementText" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="date" type="{http://dto.model.projectdirector.gs4tr.org/xsd}Date"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Announcement", propOrder = {
"announcementText",
"date"
})
public class Announcement {
@XmlElement(required = true, nillable = true)
protected String announcementText;
@XmlElement(required = true, nillable = true)
protected Date date;
/**
* Gets the value of the announcementText property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAnnouncementText() {
return announcementText;
}
/**
* Sets the value of the announcementText property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAnnouncementText(String value) {
this.announcementText = value;
}
/**
* Gets the value of the date property.
*
* @return
* possible object is
* {@link Date }
*
*/
public Date getDate() {
return date;
}
/**
* Sets the value of the date property.
*
* @param value
* allowed object is
* {@link Date }
*
*/
public void setDate(Date value) {
this.date = value;
}
}