org.datacleaner.monitor.jaxb.Timeline Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2017.04.03 at 11:33:31 AM CEST
//
package org.datacleaner.monitor.jaxb;
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;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <all>
* <element name="timeline-metadata" type="{http://eobjects.org/datacleaner/timeline/1.0}timelineMetadataType" minOccurs="0"/>
* <element name="job-name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="metrics" type="{http://eobjects.org/datacleaner/shared/1.0}metricsType"/>
* <element name="chart-options" type="{http://eobjects.org/datacleaner/timeline/1.0}chartOptionsType" minOccurs="0"/>
* </all>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
})
@XmlRootElement(name = "timeline", namespace = "http://eobjects.org/datacleaner/timeline/1.0")
public class Timeline {
@XmlElement(name = "timeline-metadata", namespace = "http://eobjects.org/datacleaner/timeline/1.0")
protected TimelineMetadataType timelineMetadata;
@XmlElement(name = "job-name", namespace = "http://eobjects.org/datacleaner/timeline/1.0", required = true)
protected String jobName;
@XmlElement(namespace = "http://eobjects.org/datacleaner/timeline/1.0", required = true)
protected MetricsType metrics;
@XmlElement(name = "chart-options", namespace = "http://eobjects.org/datacleaner/timeline/1.0")
protected ChartOptionsType chartOptions;
/**
* Gets the value of the timelineMetadata property.
*
* @return
* possible object is
* {@link TimelineMetadataType }
*
*/
public TimelineMetadataType getTimelineMetadata() {
return timelineMetadata;
}
/**
* Sets the value of the timelineMetadata property.
*
* @param value
* allowed object is
* {@link TimelineMetadataType }
*
*/
public void setTimelineMetadata(TimelineMetadataType value) {
this.timelineMetadata = value;
}
/**
* Gets the value of the jobName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getJobName() {
return jobName;
}
/**
* Sets the value of the jobName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setJobName(String value) {
this.jobName = value;
}
/**
* Gets the value of the metrics property.
*
* @return
* possible object is
* {@link MetricsType }
*
*/
public MetricsType getMetrics() {
return metrics;
}
/**
* Sets the value of the metrics property.
*
* @param value
* allowed object is
* {@link MetricsType }
*
*/
public void setMetrics(MetricsType value) {
this.metrics = value;
}
/**
* Gets the value of the chartOptions property.
*
* @return
* possible object is
* {@link ChartOptionsType }
*
*/
public ChartOptionsType getChartOptions() {
return chartOptions;
}
/**
* Sets the value of the chartOptions property.
*
* @param value
* allowed object is
* {@link ChartOptionsType }
*
*/
public void setChartOptions(ChartOptionsType value) {
this.chartOptions = value;
}
}