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 * <complexType name="OrderPizzaResponseType">
017 * <complexContent>
018 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
019 * <sequence>
020 * <element name="MinutesUntilReady" type="{http://www.w3.org/2001/XMLSchema}int"/>
021 * </sequence>
022 * </restriction>
023 * </complexContent>
024 * </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 }