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.XmlRootElement;
14 import javax.xml.bind.annotation.XmlType;
15
16
17 /**
18 * <p>Java class for anonymous complex type.
19 *
20 * <p>The following schema fragment specifies the expected content contained within this class.
21 *
22 * <pre>
23 * <complexType>
24 * <complexContent>
25 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
26 * <sequence>
27 * <element name="jmx" type="{http://www.syabru.ch/nagios-msg-broker/1.0}XmlJmx" minOccurs="0"/>
28 * </sequence>
29 * </restriction>
30 * </complexContent>
31 * </complexType>
32 * </pre>
33 *
34 *
35 */
36 @XmlAccessorType(XmlAccessType.FIELD)
37 @XmlType(name = "", propOrder = {
38 "jmx"
39 })
40 @XmlRootElement(name = "xmlConfiguration")
41 public class XmlConfiguration {
42
43 protected XmlJmx jmx;
44
45 /**
46 * Gets the value of the jmx property.
47 *
48 * @return
49 * possible object is
50 * {@link XmlJmx }
51 *
52 */
53 public XmlJmx getJmx() {
54 return jmx;
55 }
56
57 /**
58 * Sets the value of the jmx property.
59 *
60 * @param value
61 * allowed object is
62 * {@link XmlJmx }
63 *
64 */
65 public void setJmx(XmlJmx value) {
66 this.jmx = value;
67 }
68
69 }