All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ch.hsr.mas.oms.domain.dto.Annotation Maven / Gradle / Ivy

The newest version!
package ch.hsr.mas.oms.domain.dto;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;

@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
    "date",
    "text"
})
@XmlRootElement(name = "annotation")
public class Annotation {

    @XmlElement(required = true)
    protected String date;
    @XmlElement(required = true)
    protected String text;

    public String getDate() {
        return date;
    }

    public void setDate(String date) {
        this.date = date;
    }

    public String getText() {
        return text;
    }

    public void setText(String value) {
        this.text = value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy