org.apache.camel.component.jmx.jaxb.TimerNotification Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.6
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2020.04.01 at 03:22:15 PM PDT
//
package org.apache.camel.component.jmx.jaxb;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <extension base="{urn:org.apache.camel.component:jmx}notificationEventType">
* <sequence>
* <element name="notificationId" type="{http://www.w3.org/2001/XMLSchema}int"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"notificationId"
})
@XmlRootElement(name = "TimerNotification")
public class TimerNotification
extends NotificationEventType
{
protected int notificationId;
/**
* Gets the value of the notificationId property.
*
*/
public int getNotificationId() {
return notificationId;
}
/**
* Sets the value of the notificationId property.
*
*/
public void setNotificationId(int value) {
this.notificationId = value;
}
public TimerNotification withNotificationId(int value) {
setNotificationId(value);
return this;
}
@Override
public TimerNotification withSource(String value) {
setSource(value);
return this;
}
@Override
public TimerNotification withMessage(String value) {
setMessage(value);
return this;
}
@Override
public TimerNotification withSequence(long value) {
setSequence(value);
return this;
}
@Override
public TimerNotification withTimestamp(long value) {
setTimestamp(value);
return this;
}
@Override
public TimerNotification withDateTime(XMLGregorianCalendar value) {
setDateTime(value);
return this;
}
@Override
public TimerNotification withType(String value) {
setType(value);
return this;
}
@Override
public TimerNotification withUserData(String value) {
setUserData(value);
return this;
}
}