
nl.vpro.domain.api.media.ScheduleResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-domain Show documentation
Show all versions of api-domain Show documentation
Contains the objects used by the Frontend API, like forms and result objects
package nl.vpro.domain.api.media;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import nl.vpro.domain.api.ApiScheduleEvent;
import nl.vpro.domain.api.Result;
/**
* Exists only because of https://jira.vpro.nl/browse/API-118
*
* @author Michiel Meeuwissen
* @since 2.0
*/
@XmlRootElement(name = "scheduleResult")
@XmlType(name = "scheduleResultType")
public class ScheduleResult extends Result {
public ScheduleResult() {
}
public ScheduleResult(final Result extends ApiScheduleEvent> apiScheduleEventResult) {
super(apiScheduleEventResult);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy