001    //
002    // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1.5-b01-fcs 
003    // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
004    // Any modifications to this file will be lost upon recompilation of the source schema. 
005    // Generated on: 2008.03.24 at 05:35:12 PM HST 
006    //
007    
008    
009    package org.hackystat.sensor.ant.dependencyfinder.jaxb;
010    
011    import javax.xml.bind.annotation.XmlAccessType;
012    import javax.xml.bind.annotation.XmlAccessorType;
013    import javax.xml.bind.annotation.XmlAttribute;
014    import javax.xml.bind.annotation.XmlRootElement;
015    import javax.xml.bind.annotation.XmlType;
016    import javax.xml.bind.annotation.XmlValue;
017    
018    
019    /**
020     * <p>Java class for anonymous complex type.
021     * 
022     * <p>The following schema fragment specifies the expected content contained within this class.
023     * 
024     * <pre>
025     * &lt;complexType>
026     *   &lt;complexContent>
027     *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
028     *       &lt;attribute name="type" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
029     *       &lt;attribute name="confirmed" type="{http://www.w3.org/2001/XMLSchema}string" />
030     *     &lt;/restriction>
031     *   &lt;/complexContent>
032     * &lt;/complexType>
033     * </pre>
034     * 
035     * 
036     */
037    @XmlAccessorType(XmlAccessType.FIELD)
038    @XmlType(name = "", propOrder = {
039        "content"
040    })
041    @XmlRootElement(name = "outbound")
042    public class Outbound {
043    
044        @XmlValue
045        protected String content;
046        @XmlAttribute(required = true)
047        protected String type;
048        @XmlAttribute
049        protected String confirmed;
050    
051        /**
052         * Gets the value of the content property.
053         * 
054         * @return
055         *     possible object is
056         *     {@link String }
057         *     
058         */
059        public String getContent() {
060            return content;
061        }
062    
063        /**
064         * Sets the value of the content property.
065         * 
066         * @param value
067         *     allowed object is
068         *     {@link String }
069         *     
070         */
071        public void setContent(String value) {
072            this.content = value;
073        }
074    
075        /**
076         * Gets the value of the type property.
077         * 
078         * @return
079         *     possible object is
080         *     {@link String }
081         *     
082         */
083        public String getType() {
084            return type;
085        }
086    
087        /**
088         * Sets the value of the type property.
089         * 
090         * @param value
091         *     allowed object is
092         *     {@link String }
093         *     
094         */
095        public void setType(String value) {
096            this.type = value;
097        }
098    
099        /**
100         * Gets the value of the confirmed property.
101         * 
102         * @return
103         *     possible object is
104         *     {@link String }
105         *     
106         */
107        public String getConfirmed() {
108            return confirmed;
109        }
110    
111        /**
112         * Sets the value of the confirmed property.
113         * 
114         * @param value
115         *     allowed object is
116         *     {@link String }
117         *     
118         */
119        public void setConfirmed(String value) {
120            this.confirmed = value;
121        }
122    
123    }