io.github.dft.rnl.model.Message Maven / Gradle / Ivy
package io.github.dft.rnl.model;
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 Message complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Message">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Title" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="Text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Message", propOrder = {
"title",
"text"
})
public class Message {
@XmlElement(name = "Title")
protected String title;
@XmlElement(name = "Text")
protected String text;
/**
* Gets the value of the title property.
*
* @return possible object is
* {@link String }
*/
public String getTitle() {
return title;
}
/**
* Sets the value of the title property.
*
* @param value allowed object is
* {@link String }
*/
public void setTitle(String value) {
this.title = value;
}
/**
* Gets the value of the text property.
*
* @return possible object is
* {@link String }
*/
public String getText() {
return text;
}
/**
* Sets the value of the text property.
*
* @param value allowed object is
* {@link String }
*/
public void setText(String value) {
this.text = value;
}
}