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

org.apache.camel.component.jmx.jaxb.MBeanServerNotification Maven / Gradle / Ivy

There is a newer version: 4.8.0
Show newest version
//
// 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="MBeanName" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "mBeanName" }) @XmlRootElement(name = "MBeanServerNotification") public class MBeanServerNotification extends NotificationEventType { @XmlElement(name = "MBeanName", required = true) protected String mBeanName; /** * Gets the value of the mBeanName property. * * @return * possible object is * {@link String } * */ public String getMBeanName() { return mBeanName; } /** * Sets the value of the mBeanName property. * * @param value * allowed object is * {@link String } * */ public void setMBeanName(String value) { this.mBeanName = value; } public MBeanServerNotification withMBeanName(String value) { setMBeanName(value); return this; } @Override public MBeanServerNotification withSource(String value) { setSource(value); return this; } @Override public MBeanServerNotification withMessage(String value) { setMessage(value); return this; } @Override public MBeanServerNotification withSequence(long value) { setSequence(value); return this; } @Override public MBeanServerNotification withTimestamp(long value) { setTimestamp(value); return this; } @Override public MBeanServerNotification withDateTime(XMLGregorianCalendar value) { setDateTime(value); return this; } @Override public MBeanServerNotification withType(String value) { setType(value); return this; } @Override public MBeanServerNotification withUserData(String value) { setUserData(value); return this; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy