| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455 |
- //
- // 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 <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
- // 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.
- * <p>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)
- * <p>
- * <pre>
- * <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>
- * </pre>
- *
- */
- public interface Recipe {
- /**
- * Gets the value of the Comment property.
- *
- * <p>
- * 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 <CODE>set</CODE> method for the Comment property.
- *
- * <p>
- * For example, to add a new item, do as follows:
- * <pre>
- * getComment().add(newItem);
- * </pre>
- *
- *
- * <p>
- * 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.
- *
- * <p>
- * 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 <CODE>set</CODE> method for the Rating property.
- *
- * <p>
- * For example, to add a new item, do as follows:
- * <pre>
- * getRating().add(newItem);
- * </pre>
- *
- *
- * <p>
- * 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.
- *
- * <p>
- * 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 <CODE>set</CODE> method for the RelatedRecipe property.
- *
- * <p>
- * For example, to add a new item, do as follows:
- * <pre>
- * getRelatedRecipe().add(newItem);
- * </pre>
- *
- *
- * <p>
- * 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.
- *
- * <p>
- * 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 <CODE>set</CODE> method for the Step property.
- *
- * <p>
- * For example, to add a new item, do as follows:
- * <pre>
- * getStep().add(newItem);
- * </pre>
- *
- *
- * <p>
- * 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.
- *
- * <p>
- * 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 <CODE>set</CODE> method for the Ingredient property.
- *
- * <p>
- * For example, to add a new item, do as follows:
- * <pre>
- * getIngredient().add(newItem);
- * </pre>
- *
- *
- * <p>
- * 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);
- }
|