org.apache.camel.component.jmx.jaxb.JMXConnectionNotification 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.XmlElement;
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="connectionId" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"connectionId"
})
@XmlRootElement(name = "JMXConnectionNotification")
public class JMXConnectionNotification
extends NotificationEventType
{
@XmlElement(required = true)
protected String connectionId;
/**
* Gets the value of the connectionId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getConnectionId() {
return connectionId;
}
/**
* Sets the value of the connectionId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setConnectionId(String value) {
this.connectionId = value;
}
public JMXConnectionNotification withConnectionId(String value) {
setConnectionId(value);
return this;
}
@Override
public JMXConnectionNotification withSource(String value) {
setSource(value);
return this;
}
@Override
public JMXConnectionNotification withMessage(String value) {
setMessage(value);
return this;
}
@Override
public JMXConnectionNotification withSequence(long value) {
setSequence(value);
return this;
}
@Override
public JMXConnectionNotification withTimestamp(long value) {
setTimestamp(value);
return this;
}
@Override
public JMXConnectionNotification withDateTime(XMLGregorianCalendar value) {
setDateTime(value);
return this;
}
@Override
public JMXConnectionNotification withType(String value) {
setType(value);
return this;
}
@Override
public JMXConnectionNotification withUserData(String value) {
setUserData(value);
return this;
}
}