1 //
2 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-833
3 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
4 // Any modifications to this file will be lost upon recompilation of the source schema.
5 // Generated on: 2011.03.13 at 04:01:06 PM MEZ
6 //
7
8
9 package ch.syabru.nagios.broker.xml;
10
11 import javax.xml.bind.annotation.XmlAccessType;
12 import javax.xml.bind.annotation.XmlAccessorType;
13 import javax.xml.bind.annotation.XmlElement;
14 import javax.xml.bind.annotation.XmlType;
15
16
17 /**
18 * <p>Java class for XmlJmxNotification complex type.
19 *
20 * <p>The following schema fragment specifies the expected content contained within this class.
21 *
22 * <pre>
23 * <complexType name="XmlJmxNotification">
24 * <complexContent>
25 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
26 * <sequence>
27 * <element name="objectName" type="{http://www.w3.org/2001/XMLSchema}string"/>
28 * <element name="match" type="{http://www.syabru.ch/nagios-msg-broker/1.0}XmlJmxMatch"/>
29 * <element name="action" type="{http://www.syabru.ch/nagios-msg-broker/1.0}XmlActions"/>
30 * </sequence>
31 * </restriction>
32 * </complexContent>
33 * </complexType>
34 * </pre>
35 *
36 *
37 */
38 @XmlAccessorType(XmlAccessType.FIELD)
39 @XmlType(name = "XmlJmxNotification", propOrder = {
40 "objectName",
41 "match",
42 "action"
43 })
44 public class XmlJmxNotification {
45
46 @XmlElement(required = true)
47 protected String objectName;
48 @XmlElement(required = true)
49 protected XmlJmxMatch match;
50 @XmlElement(required = true)
51 protected XmlActions action;
52
53 /**
54 * Gets the value of the objectName property.
55 *
56 * @return
57 * possible object is
58 * {@link String }
59 *
60 */
61 public String getObjectName() {
62 return objectName;
63 }
64
65 /**
66 * Sets the value of the objectName property.
67 *
68 * @param value
69 * allowed object is
70 * {@link String }
71 *
72 */
73 public void setObjectName(String value) {
74 this.objectName = value;
75 }
76
77 /**
78 * Gets the value of the match property.
79 *
80 * @return
81 * possible object is
82 * {@link XmlJmxMatch }
83 *
84 */
85 public XmlJmxMatch getMatch() {
86 return match;
87 }
88
89 /**
90 * Sets the value of the match property.
91 *
92 * @param value
93 * allowed object is
94 * {@link XmlJmxMatch }
95 *
96 */
97 public void setMatch(XmlJmxMatch value) {
98 this.match = value;
99 }
100
101 /**
102 * Gets the value of the action property.
103 *
104 * @return
105 * possible object is
106 * {@link XmlActions }
107 *
108 */
109 public XmlActions getAction() {
110 return action;
111 }
112
113 /**
114 * Sets the value of the action property.
115 *
116 * @param value
117 * allowed object is
118 * {@link XmlActions }
119 *
120 */
121 public void setAction(XmlActions value) {
122 this.action = value;
123 }
124
125 }