RecipeRating.java 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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-rating 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 137)
  11. * <p>
  12. * <pre>
  13. * &lt;complexType name="recipe-rating">
  14. * &lt;complexContent>
  15. * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
  16. * &lt;attribute name="createdDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
  17. * &lt;attribute name="rating" type="{http://www.w3.org/2001/XMLSchema}short" />
  18. * &lt;attribute name="ratingId" type="{http://www.w3.org/2001/XMLSchema}long" />
  19. * &lt;attribute name="userId" type="{http://www.w3.org/2001/XMLSchema}int" />
  20. * &lt;/restriction>
  21. * &lt;/complexContent>
  22. * &lt;/complexType>
  23. * </pre>
  24. *
  25. */
  26. public interface RecipeRating {
  27. /**
  28. * Gets the value of the ratingId property.
  29. *
  30. * @return
  31. * possible object is
  32. * {@link java.lang.Long}
  33. */
  34. java.lang.Long getRatingId();
  35. /**
  36. * Sets the value of the ratingId property.
  37. *
  38. * @param value
  39. * allowed object is
  40. * {@link java.lang.Long}
  41. */
  42. void setRatingId(java.lang.Long value);
  43. /**
  44. * Gets the value of the userId property.
  45. *
  46. * @return
  47. * possible object is
  48. * {@link java.lang.Integer}
  49. */
  50. java.lang.Integer getUserId();
  51. /**
  52. * Sets the value of the userId property.
  53. *
  54. * @param value
  55. * allowed object is
  56. * {@link java.lang.Integer}
  57. */
  58. void setUserId(java.lang.Integer value);
  59. /**
  60. * Gets the value of the rating property.
  61. *
  62. */
  63. short getRating();
  64. /**
  65. * Sets the value of the rating property.
  66. *
  67. */
  68. void setRating(short value);
  69. /**
  70. * Gets the value of the createdDate property.
  71. *
  72. * @return
  73. * possible object is
  74. * {@link java.util.Calendar}
  75. */
  76. java.util.Calendar getCreatedDate();
  77. /**
  78. * Sets the value of the createdDate property.
  79. *
  80. * @param value
  81. * allowed object is
  82. * {@link java.util.Calendar}
  83. */
  84. void setCreatedDate(java.util.Calendar value);
  85. }