// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v1.0.6-01/24/2006 06:08 PM(kohsuke)-fcs // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2018.09.10 at 08:01:16 AM PDT // package magoffin.matt.ieat.domain; /** * Java content class for recipe complex type. *

The following schema fragment specifies the expected content contained within this java content object. (defined at file:/home/tom/workspace/iEat/hyperjaxb2-build/src/main/resources/core.xsd line 81) *

*

 * <complexType name="recipe">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="excerpt" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="source" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="directions" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="image" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="base" type="{http://msqr.us/xsd/ieat}base" minOccurs="0"/>
 *         <element name="course" type="{http://msqr.us/xsd/ieat}course" minOccurs="0"/>
 *         <element name="ethnicity" type="{http://msqr.us/xsd/ieat}ethnicity" minOccurs="0"/>
 *         <element name="difficulty" type="{http://msqr.us/xsd/ieat}difficulty" minOccurs="0"/>
 *         <element name="owner" type="{http://msqr.us/xsd/ieat}user" minOccurs="0"/>
 *         <element name="prep-time" type="{http://msqr.us/xsd/ieat}prep-time" minOccurs="0"/>
 *         <element name="system" type="{http://msqr.us/xsd/ieat}system"/>
 *         <element name="ingredient" type="{http://msqr.us/xsd/ieat}recipe-ingredient" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="related-recipe" type="{http://msqr.us/xsd/ieat}related-recipe" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="step" type="{http://msqr.us/xsd/ieat}recipe-step" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="comment" type="{http://msqr.us/xsd/ieat}recipe-comment" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="rating" type="{http://msqr.us/xsd/ieat}recipe-rating" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="createdDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
 *       <attribute name="modifiedDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
 *       <attribute name="recipeId" type="{http://www.w3.org/2001/XMLSchema}long" />
 *       <attribute name="servingSize" type="{http://www.w3.org/2001/XMLSchema}int" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* */ public interface Recipe { /** * Gets the value of the Comment property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the Comment property. * *

* For example, to add a new item, do as follows: *

     *    getComment().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link magoffin.matt.ieat.domain.RecipeComment} * */ java.util.List getComment(); /** * Gets the value of the owner property. * * @return * possible object is * {@link magoffin.matt.ieat.domain.User} */ magoffin.matt.ieat.domain.User getOwner(); /** * Sets the value of the owner property. * * @param value * allowed object is * {@link magoffin.matt.ieat.domain.User} */ void setOwner(magoffin.matt.ieat.domain.User value); /** * Gets the value of the directions property. * * @return * possible object is * {@link java.lang.String} */ java.lang.String getDirections(); /** * Sets the value of the directions property. * * @param value * allowed object is * {@link java.lang.String} */ void setDirections(java.lang.String value); /** * Gets the value of the difficulty property. * * @return * possible object is * {@link magoffin.matt.ieat.domain.Difficulty} */ magoffin.matt.ieat.domain.Difficulty getDifficulty(); /** * Sets the value of the difficulty property. * * @param value * allowed object is * {@link magoffin.matt.ieat.domain.Difficulty} */ void setDifficulty(magoffin.matt.ieat.domain.Difficulty value); /** * Gets the value of the Rating property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the Rating property. * *

* For example, to add a new item, do as follows: *

     *    getRating().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link magoffin.matt.ieat.domain.RecipeRating} * */ java.util.List getRating(); /** * Gets the value of the recipeId property. * * @return * possible object is * {@link java.lang.Long} */ java.lang.Long getRecipeId(); /** * Sets the value of the recipeId property. * * @param value * allowed object is * {@link java.lang.Long} */ void setRecipeId(java.lang.Long value); /** * Gets the value of the RelatedRecipe property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the RelatedRecipe property. * *

* For example, to add a new item, do as follows: *

     *    getRelatedRecipe().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link magoffin.matt.ieat.domain.RelatedRecipe} * */ java.util.List getRelatedRecipe(); /** * Gets the value of the Step property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the Step property. * *

* For example, to add a new item, do as follows: *

     *    getStep().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link magoffin.matt.ieat.domain.RecipeStep} * */ java.util.List getStep(); /** * Gets the value of the modifiedDate property. * * @return * possible object is * {@link java.util.Calendar} */ java.util.Calendar getModifiedDate(); /** * Sets the value of the modifiedDate property. * * @param value * allowed object is * {@link java.util.Calendar} */ void setModifiedDate(java.util.Calendar value); /** * The URL of an image file to display with the recipe. * * @return * possible object is * {@link java.lang.String} */ java.lang.String getImage(); /** * The URL of an image file to display with the recipe. * * @param value * allowed object is * {@link java.lang.String} */ void setImage(java.lang.String value); /** * Gets the value of the source property. * * @return * possible object is * {@link java.lang.String} */ java.lang.String getSource(); /** * Sets the value of the source property. * * @param value * allowed object is * {@link java.lang.String} */ void setSource(java.lang.String value); /** * Gets the value of the base property. * * @return * possible object is * {@link magoffin.matt.ieat.domain.Base} */ magoffin.matt.ieat.domain.Base getBase(); /** * Sets the value of the base property. * * @param value * allowed object is * {@link magoffin.matt.ieat.domain.Base} */ void setBase(magoffin.matt.ieat.domain.Base value); /** * Gets the value of the system property. * * @return * possible object is * {@link magoffin.matt.ieat.domain.System} */ magoffin.matt.ieat.domain.System getSystem(); /** * Sets the value of the system property. * * @param value * allowed object is * {@link magoffin.matt.ieat.domain.System} */ void setSystem(magoffin.matt.ieat.domain.System value); /** * Gets the value of the name property. * * @return * possible object is * {@link java.lang.String} */ java.lang.String getName(); /** * Sets the value of the name property. * * @param value * allowed object is * {@link java.lang.String} */ void setName(java.lang.String value); /** * Gets the value of the ethnicity property. * * @return * possible object is * {@link magoffin.matt.ieat.domain.Ethnicity} */ magoffin.matt.ieat.domain.Ethnicity getEthnicity(); /** * Sets the value of the ethnicity property. * * @param value * allowed object is * {@link magoffin.matt.ieat.domain.Ethnicity} */ void setEthnicity(magoffin.matt.ieat.domain.Ethnicity value); /** * Gets the value of the servingSize property. * * @return * possible object is * {@link java.lang.Integer} */ java.lang.Integer getServingSize(); /** * Sets the value of the servingSize property. * * @param value * allowed object is * {@link java.lang.Integer} */ void setServingSize(java.lang.Integer value); /** * Gets the value of the prepTime property. * * @return * possible object is * {@link magoffin.matt.ieat.domain.PrepTime} */ magoffin.matt.ieat.domain.PrepTime getPrepTime(); /** * Sets the value of the prepTime property. * * @param value * allowed object is * {@link magoffin.matt.ieat.domain.PrepTime} */ void setPrepTime(magoffin.matt.ieat.domain.PrepTime value); /** * Gets the value of the Ingredient property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the Ingredient property. * *

* For example, to add a new item, do as follows: *

     *    getIngredient().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link magoffin.matt.ieat.domain.RecipeIngredient} * */ java.util.List getIngredient(); /** * Gets the value of the excerpt property. * * @return * possible object is * {@link java.lang.String} */ java.lang.String getExcerpt(); /** * Sets the value of the excerpt property. * * @param value * allowed object is * {@link java.lang.String} */ void setExcerpt(java.lang.String value); /** * Gets the value of the createdDate property. * * @return * possible object is * {@link java.util.Calendar} */ java.util.Calendar getCreatedDate(); /** * Sets the value of the createdDate property. * * @param value * allowed object is * {@link java.util.Calendar} */ void setCreatedDate(java.util.Calendar value); /** * Gets the value of the course property. * * @return * possible object is * {@link magoffin.matt.ieat.domain.Course} */ magoffin.matt.ieat.domain.Course getCourse(); /** * Sets the value of the course property. * * @param value * allowed object is * {@link magoffin.matt.ieat.domain.Course} */ void setCourse(magoffin.matt.ieat.domain.Course value); }