RecipeSearchCriteria.java 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. //
  2. // 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
  3. // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
  4. // Any modifications to this file will be lost upon recompilation of the source schema.
  5. // Generated on: 2018.09.10 at 08:01:16 AM PDT
  6. //
  7. package magoffin.matt.ieat.domain;
  8. /**
  9. * Java content class for recipe-search-criteria complex type.
  10. * <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/ui.xsd line 87)
  11. * <p>
  12. * <pre>
  13. * &lt;complexType name="recipe-search-criteria">
  14. * &lt;complexContent>
  15. * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
  16. * &lt;sequence>
  17. * &lt;element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
  18. * &lt;element name="simpleQuery" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
  19. * &lt;element name="ingredient" type="{http://msqr.us/xsd/ieat}recipe-ingredient" maxOccurs="unbounded" minOccurs="0"/>
  20. * &lt;element name="advanced" type="{http://msqr.us/xsd/ieat}advanced-search-criteria" maxOccurs="unbounded" minOccurs="0"/>
  21. * &lt;/sequence>
  22. * &lt;attribute name="mode" type="{http://www.w3.org/2001/XMLSchema}string" />
  23. * &lt;/restriction>
  24. * &lt;/complexContent>
  25. * &lt;/complexType>
  26. * </pre>
  27. *
  28. */
  29. public interface RecipeSearchCriteria {
  30. /**
  31. * Gets the value of the Advanced property.
  32. *
  33. * <p>
  34. * This accessor method returns a reference to the live list,
  35. * not a snapshot. Therefore any modification you make to the
  36. * returned list will be present inside the JAXB object.
  37. * This is why there is not a <CODE>set</CODE> method for the Advanced property.
  38. *
  39. * <p>
  40. * For example, to add a new item, do as follows:
  41. * <pre>
  42. * getAdvanced().add(newItem);
  43. * </pre>
  44. *
  45. *
  46. * <p>
  47. * Objects of the following type(s) are allowed in the list
  48. * {@link magoffin.matt.ieat.domain.AdvancedSearchCriteria}
  49. *
  50. */
  51. java.util.List getAdvanced();
  52. /**
  53. * Gets the value of the simpleQuery property.
  54. *
  55. * @return
  56. * possible object is
  57. * {@link java.lang.String}
  58. */
  59. java.lang.String getSimpleQuery();
  60. /**
  61. * Sets the value of the simpleQuery property.
  62. *
  63. * @param value
  64. * allowed object is
  65. * {@link java.lang.String}
  66. */
  67. void setSimpleQuery(java.lang.String value);
  68. /**
  69. * To search for recipes containing sets of ingredients.
  70. * Gets the value of the Ingredient property.
  71. *
  72. * <p>
  73. * This accessor method returns a reference to the live list,
  74. * not a snapshot. Therefore any modification you make to the
  75. * returned list will be present inside the JAXB object.
  76. * This is why there is not a <CODE>set</CODE> method for the Ingredient property.
  77. *
  78. * <p>
  79. * For example, to add a new item, do as follows:
  80. * <pre>
  81. * getIngredient().add(newItem);
  82. * </pre>
  83. *
  84. *
  85. * <p>
  86. * Objects of the following type(s) are allowed in the list
  87. * {@link magoffin.matt.ieat.domain.RecipeIngredient}
  88. *
  89. */
  90. java.util.List getIngredient();
  91. /**
  92. * Gets the value of the mode property.
  93. *
  94. * @return
  95. * possible object is
  96. * {@link java.lang.String}
  97. */
  98. java.lang.String getMode();
  99. /**
  100. * Sets the value of the mode property.
  101. *
  102. * @param value
  103. * allowed object is
  104. * {@link java.lang.String}
  105. */
  106. void setMode(java.lang.String value);
  107. /**
  108. * Gets the value of the name property.
  109. *
  110. * @return
  111. * possible object is
  112. * {@link java.lang.String}
  113. */
  114. java.lang.String getName();
  115. /**
  116. * Sets the value of the name property.
  117. *
  118. * @param value
  119. * allowed object is
  120. * {@link java.lang.String}
  121. */
  122. void setName(java.lang.String value);
  123. }