User.java 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  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 user 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 187)
  11. * <p>
  12. * <pre>
  13. * &lt;complexType name="user">
  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"/>
  18. * &lt;element name="email" type="{http://www.w3.org/2001/XMLSchema}string"/>
  19. * &lt;element name="password" type="{http://www.w3.org/2001/XMLSchema}string"/>
  20. * &lt;/sequence>
  21. * &lt;attribute name="accessLevel" type="{http://www.w3.org/2001/XMLSchema}int" />
  22. * &lt;attribute name="country" type="{http://www.w3.org/2001/XMLSchema}string" />
  23. * &lt;attribute name="createdDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
  24. * &lt;attribute name="language" type="{http://www.w3.org/2001/XMLSchema}string" />
  25. * &lt;attribute name="lastLoginDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
  26. * &lt;attribute name="login" type="{http://www.w3.org/2001/XMLSchema}string" />
  27. * &lt;attribute name="userId" type="{http://www.w3.org/2001/XMLSchema}int" />
  28. * &lt;/restriction>
  29. * &lt;/complexContent>
  30. * &lt;/complexType>
  31. * </pre>
  32. *
  33. */
  34. public interface User {
  35. /**
  36. * Gets the value of the email property.
  37. *
  38. * @return
  39. * possible object is
  40. * {@link java.lang.String}
  41. */
  42. java.lang.String getEmail();
  43. /**
  44. * Sets the value of the email property.
  45. *
  46. * @param value
  47. * allowed object is
  48. * {@link java.lang.String}
  49. */
  50. void setEmail(java.lang.String value);
  51. /**
  52. * Gets the value of the language property.
  53. *
  54. * @return
  55. * possible object is
  56. * {@link java.lang.String}
  57. */
  58. java.lang.String getLanguage();
  59. /**
  60. * Sets the value of the language property.
  61. *
  62. * @param value
  63. * allowed object is
  64. * {@link java.lang.String}
  65. */
  66. void setLanguage(java.lang.String value);
  67. /**
  68. * Gets the value of the userId property.
  69. *
  70. * @return
  71. * possible object is
  72. * {@link java.lang.Integer}
  73. */
  74. java.lang.Integer getUserId();
  75. /**
  76. * Sets the value of the userId property.
  77. *
  78. * @param value
  79. * allowed object is
  80. * {@link java.lang.Integer}
  81. */
  82. void setUserId(java.lang.Integer value);
  83. /**
  84. * Gets the value of the createdDate property.
  85. *
  86. * @return
  87. * possible object is
  88. * {@link java.util.Calendar}
  89. */
  90. java.util.Calendar getCreatedDate();
  91. /**
  92. * Sets the value of the createdDate property.
  93. *
  94. * @param value
  95. * allowed object is
  96. * {@link java.util.Calendar}
  97. */
  98. void setCreatedDate(java.util.Calendar value);
  99. /**
  100. * Gets the value of the lastLoginDate property.
  101. *
  102. * @return
  103. * possible object is
  104. * {@link java.util.Calendar}
  105. */
  106. java.util.Calendar getLastLoginDate();
  107. /**
  108. * Sets the value of the lastLoginDate property.
  109. *
  110. * @param value
  111. * allowed object is
  112. * {@link java.util.Calendar}
  113. */
  114. void setLastLoginDate(java.util.Calendar value);
  115. /**
  116. * Gets the value of the country property.
  117. *
  118. * @return
  119. * possible object is
  120. * {@link java.lang.String}
  121. */
  122. java.lang.String getCountry();
  123. /**
  124. * Sets the value of the country property.
  125. *
  126. * @param value
  127. * allowed object is
  128. * {@link java.lang.String}
  129. */
  130. void setCountry(java.lang.String value);
  131. /**
  132. * Gets the value of the login property.
  133. *
  134. * @return
  135. * possible object is
  136. * {@link java.lang.String}
  137. */
  138. java.lang.String getLogin();
  139. /**
  140. * Sets the value of the login property.
  141. *
  142. * @param value
  143. * allowed object is
  144. * {@link java.lang.String}
  145. */
  146. void setLogin(java.lang.String value);
  147. /**
  148. * Gets the value of the accessLevel property.
  149. *
  150. * @return
  151. * possible object is
  152. * {@link java.lang.Integer}
  153. */
  154. java.lang.Integer getAccessLevel();
  155. /**
  156. * Sets the value of the accessLevel property.
  157. *
  158. * @param value
  159. * allowed object is
  160. * {@link java.lang.Integer}
  161. */
  162. void setAccessLevel(java.lang.Integer value);
  163. /**
  164. * Gets the value of the name property.
  165. *
  166. * @return
  167. * possible object is
  168. * {@link java.lang.String}
  169. */
  170. java.lang.String getName();
  171. /**
  172. * Sets the value of the name property.
  173. *
  174. * @param value
  175. * allowed object is
  176. * {@link java.lang.String}
  177. */
  178. void setName(java.lang.String value);
  179. /**
  180. * Gets the value of the password property.
  181. *
  182. * @return
  183. * possible object is
  184. * {@link java.lang.String}
  185. */
  186. java.lang.String getPassword();
  187. /**
  188. * Sets the value of the password property.
  189. *
  190. * @param value
  191. * allowed object is
  192. * {@link java.lang.String}
  193. */
  194. void setPassword(java.lang.String value);
  195. }