RecipeComment.java 2.7 KB

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