Class NotificationEventType
- java.lang.Object
-
- org.apache.camel.component.jmx.jaxb.NotificationEventType
-
- Direct Known Subclasses:
AttributeChangeNotification,JMXConnectionNotification,MBeanServerNotification,MonitorNotification,RelationNotification,TimerNotification
public class NotificationEventType extends Object
Base type that includes all of the elements for a javax.management.NotificationJava class for notificationEventType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="notificationEventType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="source" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="message" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="sequence" type="{http://www.w3.org/2001/XMLSchema}long"/> <element name="timestamp" type="{http://www.w3.org/2001/XMLSchema}long"/> <element name="dateTime" type="{http://www.w3.org/2001/XMLSchema}dateTime"/> <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="userData" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description NotificationEventType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description XMLGregorianCalendargetDateTime()Gets the value of the dateTime property.StringgetMessage()Gets the value of the message property.longgetSequence()Gets the value of the sequence property.StringgetSource()Gets the value of the source property.longgetTimestamp()Gets the value of the timestamp property.StringgetType()Gets the value of the type property.StringgetUserData()Gets the value of the userData property.voidsetDateTime(XMLGregorianCalendar value)Sets the value of the dateTime property.voidsetMessage(String value)Sets the value of the message property.voidsetSequence(long value)Sets the value of the sequence property.voidsetSource(String value)Sets the value of the source property.voidsetTimestamp(long value)Sets the value of the timestamp property.voidsetType(String value)Sets the value of the type property.voidsetUserData(String value)Sets the value of the userData property.NotificationEventTypewithDateTime(XMLGregorianCalendar value)NotificationEventTypewithMessage(String value)NotificationEventTypewithSequence(long value)NotificationEventTypewithSource(String value)NotificationEventTypewithTimestamp(long value)NotificationEventTypewithType(String value)NotificationEventTypewithUserData(String value)
-
-
-
Field Detail
-
source
protected String source
-
message
protected String message
-
sequence
protected long sequence
-
timestamp
protected long timestamp
-
dateTime
protected XMLGregorianCalendar dateTime
-
type
protected String type
-
userData
protected String userData
-
-
Method Detail
-
getSource
public String getSource()
Gets the value of the source property.- Returns:
- possible object is
String
-
setSource
public void setSource(String value)
Sets the value of the source property.- Parameters:
value- allowed object isString
-
getMessage
public String getMessage()
Gets the value of the message property.- Returns:
- possible object is
String
-
setMessage
public void setMessage(String value)
Sets the value of the message property.- Parameters:
value- allowed object isString
-
getSequence
public long getSequence()
Gets the value of the sequence property.
-
setSequence
public void setSequence(long value)
Sets the value of the sequence property.
-
getTimestamp
public long getTimestamp()
Gets the value of the timestamp property.
-
setTimestamp
public void setTimestamp(long value)
Sets the value of the timestamp property.
-
getDateTime
public XMLGregorianCalendar getDateTime()
Gets the value of the dateTime property.- Returns:
- possible object is
XMLGregorianCalendar
-
setDateTime
public void setDateTime(XMLGregorianCalendar value)
Sets the value of the dateTime property.- Parameters:
value- allowed object isXMLGregorianCalendar
-
getType
public String getType()
Gets the value of the type property.- Returns:
- possible object is
String
-
setType
public void setType(String value)
Sets the value of the type property.- Parameters:
value- allowed object isString
-
getUserData
public String getUserData()
Gets the value of the userData property.- Returns:
- possible object is
String
-
setUserData
public void setUserData(String value)
Sets the value of the userData property.- Parameters:
value- allowed object isString
-
withSource
public NotificationEventType withSource(String value)
-
withMessage
public NotificationEventType withMessage(String value)
-
withSequence
public NotificationEventType withSequence(long value)
-
withTimestamp
public NotificationEventType withTimestamp(long value)
-
withDateTime
public NotificationEventType withDateTime(XMLGregorianCalendar value)
-
withType
public NotificationEventType withType(String value)
-
withUserData
public NotificationEventType withUserData(String value)
-
-