001    
002    package org.apache.camel.pizza.types;
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 OrderPizzaResponseType complex type.
012     * 
013     * <p>The following schema fragment specifies the expected content contained within this class.
014     * 
015     * <pre>
016     * &lt;complexType name="OrderPizzaResponseType">
017     *   &lt;complexContent>
018     *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
019     *       &lt;sequence>
020     *         &lt;element name="MinutesUntilReady" type="{http://www.w3.org/2001/XMLSchema}int"/>
021     *       &lt;/sequence>
022     *     &lt;/restriction>
023     *   &lt;/complexContent>
024     * &lt;/complexType>
025     * </pre>
026     * 
027     * 
028     */
029    @XmlAccessorType(XmlAccessType.FIELD)
030    @XmlType(name = "OrderPizzaResponseType", propOrder = {
031        "minutesUntilReady"
032    })
033    public class OrderPizzaResponseType {
034    
035        @XmlElement(name = "MinutesUntilReady")
036        protected int minutesUntilReady;
037    
038        /**
039         * Gets the value of the minutesUntilReady property.
040         * 
041         */
042        public int getMinutesUntilReady() {
043            return minutesUntilReady;
044        }
045    
046        /**
047         * Sets the value of the minutesUntilReady property.
048         * 
049         */
050        public void setMinutesUntilReady(int value) {
051            this.minutesUntilReady = value;
052        }
053    
054    }