View Javadoc

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.XmlType;
14  
15  
16  /**
17   * <p>Java class for XmlJmxMatch complex type.
18   * 
19   * <p>The following schema fragment specifies the expected content contained within this class.
20   * 
21   * <pre>
22   * &lt;complexType name="XmlJmxMatch">
23   *   &lt;complexContent>
24   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
25   *       &lt;sequence>
26   *         &lt;element name="className" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
27   *         &lt;element name="type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
28   *         &lt;element name="message" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
29   *         &lt;element name="source" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
30   *       &lt;/sequence>
31   *     &lt;/restriction>
32   *   &lt;/complexContent>
33   * &lt;/complexType>
34   * </pre>
35   * 
36   * 
37   */
38  @XmlAccessorType(XmlAccessType.FIELD)
39  @XmlType(name = "XmlJmxMatch", propOrder = {
40      "className",
41      "type",
42      "message",
43      "source"
44  })
45  public class XmlJmxMatch {
46  
47      protected String className;
48      protected String type;
49      protected String message;
50      protected String source;
51  
52      /**
53       * Gets the value of the className property.
54       * 
55       * @return
56       *     possible object is
57       *     {@link String }
58       *     
59       */
60      public String getClassName() {
61          return className;
62      }
63  
64      /**
65       * Sets the value of the className property.
66       * 
67       * @param value
68       *     allowed object is
69       *     {@link String }
70       *     
71       */
72      public void setClassName(String value) {
73          this.className = value;
74      }
75  
76      /**
77       * Gets the value of the type property.
78       * 
79       * @return
80       *     possible object is
81       *     {@link String }
82       *     
83       */
84      public String getType() {
85          return type;
86      }
87  
88      /**
89       * Sets the value of the type property.
90       * 
91       * @param value
92       *     allowed object is
93       *     {@link String }
94       *     
95       */
96      public void setType(String value) {
97          this.type = value;
98      }
99  
100     /**
101      * Gets the value of the message property.
102      * 
103      * @return
104      *     possible object is
105      *     {@link String }
106      *     
107      */
108     public String getMessage() {
109         return message;
110     }
111 
112     /**
113      * Sets the value of the message property.
114      * 
115      * @param value
116      *     allowed object is
117      *     {@link String }
118      *     
119      */
120     public void setMessage(String value) {
121         this.message = value;
122     }
123 
124     /**
125      * Gets the value of the source property.
126      * 
127      * @return
128      *     possible object is
129      *     {@link String }
130      *     
131      */
132     public String getSource() {
133         return source;
134     }
135 
136     /**
137      * Sets the value of the source property.
138      * 
139      * @param value
140      *     allowed object is
141      *     {@link String }
142      *     
143      */
144     public void setSource(String value) {
145         this.source = value;
146     }
147 
148 }