RelatedRecipe.java 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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 related-recipe 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/core.xsd line 150)
  11. * <p>
  12. * <pre>
  13. * &lt;complexType name="related-recipe">
  14. * &lt;complexContent>
  15. * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
  16. * &lt;sequence>
  17. * &lt;element name="kind" type="{http://msqr.us/xsd/ieat}relation-kind"/>
  18. * &lt;element name="recipe" type="{http://msqr.us/xsd/ieat}recipe"/>
  19. * &lt;/sequence>
  20. * &lt;/restriction>
  21. * &lt;/complexContent>
  22. * &lt;/complexType>
  23. * </pre>
  24. *
  25. */
  26. public interface RelatedRecipe {
  27. /**
  28. * Gets the value of the recipe property.
  29. *
  30. * @return
  31. * possible object is
  32. * {@link magoffin.matt.ieat.domain.Recipe}
  33. */
  34. magoffin.matt.ieat.domain.Recipe getRecipe();
  35. /**
  36. * Sets the value of the recipe property.
  37. *
  38. * @param value
  39. * allowed object is
  40. * {@link magoffin.matt.ieat.domain.Recipe}
  41. */
  42. void setRecipe(magoffin.matt.ieat.domain.Recipe value);
  43. /**
  44. * Gets the value of the kind property.
  45. *
  46. * @return
  47. * possible object is
  48. * {@link magoffin.matt.ieat.domain.RelationKind}
  49. */
  50. magoffin.matt.ieat.domain.RelationKind getKind();
  51. /**
  52. * Sets the value of the kind property.
  53. *
  54. * @param value
  55. * allowed object is
  56. * {@link magoffin.matt.ieat.domain.RelationKind}
  57. */
  58. void setKind(magoffin.matt.ieat.domain.RelationKind value);
  59. /**
  60. * Gets the value of the hjid property.
  61. *
  62. */
  63. java.lang.Long getHjid();
  64. /**
  65. * Sets the value of the hjid property.
  66. *
  67. */
  68. void setHjid(java.lang.Long value);
  69. }