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.Notification <p>Java class for notificationEventType complex type</p>. <p>The following schema fragment specifies the expected content contained within this class.</p> <pre>{@code <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> }</pre>
  • Field Details

    • 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
  • Constructor Details

    • NotificationEventType

      public NotificationEventType()
  • Method Details

    • 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 is String
    • 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 is String
    • 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 is XMLGregorianCalendar
    • 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 is String
    • 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 is String
    • 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)