001
002 package org.apache.camel.example.reportincident;
003
004 import javax.xml.bind.annotation.XmlAccessType;
005 import javax.xml.bind.annotation.XmlAccessorType;
006 import javax.xml.bind.annotation.XmlElement;
007 import javax.xml.bind.annotation.XmlType;
008
009
010 /**
011 * <p>Java class for outputReportIncident complex type.
012 *
013 * <p>The following schema fragment specifies the expected content contained within this class.
014 *
015 * <pre>
016 * <complexType name="outputReportIncident">
017 * <complexContent>
018 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
019 * <sequence>
020 * <element name="code" type="{http://www.w3.org/2001/XMLSchema}string"/>
021 * </sequence>
022 * </restriction>
023 * </complexContent>
024 * </complexType>
025 * </pre>
026 *
027 *
028 */
029 @XmlAccessorType(XmlAccessType.FIELD)
030 @XmlType(name = "outputReportIncident", propOrder = {
031 "code"
032 })
033 public class OutputReportIncident {
034
035 @XmlElement(required = true)
036 protected String code;
037
038 /**
039 * Gets the value of the code property.
040 *
041 * @return
042 * possible object is
043 * {@link String }
044 *
045 */
046 public String getCode() {
047 return code;
048 }
049
050 /**
051 * Sets the value of the code property.
052 *
053 * @param value
054 * allowed object is
055 * {@link String }
056 *
057 */
058 public void setCode(String value) {
059 this.code = value;
060 }
061
062 }