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 XmlActionProcessServiceCheckResult complex type.
19 *
20 * <p>The following schema fragment specifies the expected content contained within this class.
21 *
22 * <pre>
23 * <complexType name="XmlActionProcessServiceCheckResult">
24 * <complexContent>
25 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
26 * <sequence>
27 * <element name="hostName" type="{http://www.w3.org/2001/XMLSchema}string"/>
28 * <element name="serviceDescription" type="{http://www.w3.org/2001/XMLSchema}string"/>
29 * <element name="returnCode" type="{http://www.syabru.ch/nagios-msg-broker/1.0}XmlNagiosReturnCode"/>
30 * <element name="pluginOutput" type="{http://www.w3.org/2001/XMLSchema}string"/>
31 * </sequence>
32 * </restriction>
33 * </complexContent>
34 * </complexType>
35 * </pre>
36 *
37 *
38 */
39 @XmlAccessorType(XmlAccessType.FIELD)
40 @XmlType(name = "XmlActionProcessServiceCheckResult", propOrder = {
41 "hostName",
42 "serviceDescription",
43 "returnCode",
44 "pluginOutput"
45 })
46 public class XmlActionProcessServiceCheckResult {
47
48 @XmlElement(required = true)
49 protected String hostName;
50 @XmlElement(required = true)
51 protected String serviceDescription;
52 protected int returnCode;
53 @XmlElement(required = true)
54 protected String pluginOutput;
55
56 /**
57 * Gets the value of the hostName property.
58 *
59 * @return
60 * possible object is
61 * {@link String }
62 *
63 */
64 public String getHostName() {
65 return hostName;
66 }
67
68 /**
69 * Sets the value of the hostName property.
70 *
71 * @param value
72 * allowed object is
73 * {@link String }
74 *
75 */
76 public void setHostName(String value) {
77 this.hostName = value;
78 }
79
80 /**
81 * Gets the value of the serviceDescription property.
82 *
83 * @return
84 * possible object is
85 * {@link String }
86 *
87 */
88 public String getServiceDescription() {
89 return serviceDescription;
90 }
91
92 /**
93 * Sets the value of the serviceDescription property.
94 *
95 * @param value
96 * allowed object is
97 * {@link String }
98 *
99 */
100 public void setServiceDescription(String value) {
101 this.serviceDescription = value;
102 }
103
104 /**
105 * Gets the value of the returnCode property.
106 *
107 */
108 public int getReturnCode() {
109 return returnCode;
110 }
111
112 /**
113 * Sets the value of the returnCode property.
114 *
115 */
116 public void setReturnCode(int value) {
117 this.returnCode = value;
118 }
119
120 /**
121 * Gets the value of the pluginOutput property.
122 *
123 * @return
124 * possible object is
125 * {@link String }
126 *
127 */
128 public String getPluginOutput() {
129 return pluginOutput;
130 }
131
132 /**
133 * Sets the value of the pluginOutput property.
134 *
135 * @param value
136 * allowed object is
137 * {@link String }
138 *
139 */
140 public void setPluginOutput(String value) {
141 this.pluginOutput = value;
142 }
143
144 }