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 OrderPizzaType complex type.
012     * 
013     * <p>The following schema fragment specifies the expected content contained within this class.
014     * 
015     * <pre>
016     * &lt;complexType name="OrderPizzaType">
017     *   &lt;complexContent>
018     *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
019     *       &lt;sequence>
020     *         &lt;element name="Toppings" type="{http://camel.apache.org/pizza/types}ToppingsListType"/>
021     *       &lt;/sequence>
022     *     &lt;/restriction>
023     *   &lt;/complexContent>
024     * &lt;/complexType>
025     * </pre>
026     * 
027     * 
028     */
029    @XmlAccessorType(XmlAccessType.FIELD)
030    @XmlType(name = "OrderPizzaType", propOrder = {
031        "toppings"
032    })
033    public class OrderPizzaType {
034    
035        @XmlElement(name = "Toppings", required = true)
036        protected ToppingsListType toppings;
037    
038        /**
039         * Gets the value of the toppings property.
040         * 
041         * @return
042         *     possible object is
043         *     {@link ToppingsListType }
044         *     
045         */
046        public ToppingsListType getToppings() {
047            return toppings;
048        }
049    
050        /**
051         * Sets the value of the toppings property.
052         * 
053         * @param value
054         *     allowed object is
055         *     {@link ToppingsListType }
056         *     
057         */
058        public void setToppings(ToppingsListType value) {
059            this.toppings = value;
060        }
061    
062    }