/examples/bookmark/src/main/java/org/glassfish/jersey/examples/bookmark/entity/UserEntity.java

http://github.com/jersey/jersey · Java · 250 lines · 93 code · 27 blank · 130 comment · 6 complexity · 4617f32a7096d579012beecac83f69f4 MD5 · raw file

  1. /*
  2. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
  3. *
  4. * Copyright (c) 2010-2017 Oracle and/or its affiliates. All rights reserved.
  5. *
  6. * The contents of this file are subject to the terms of either the GNU
  7. * General Public License Version 2 only ("GPL") or the Common Development
  8. * and Distribution License("CDDL") (collectively, the "License"). You
  9. * may not use this file except in compliance with the License. You can
  10. * obtain a copy of the License at
  11. * https://oss.oracle.com/licenses/CDDL+GPL-1.1
  12. * or LICENSE.txt. See the License for the specific
  13. * language governing permissions and limitations under the License.
  14. *
  15. * When distributing the software, include this License Header Notice in each
  16. * file and include the License file at LICENSE.txt.
  17. *
  18. * GPL Classpath Exception:
  19. * Oracle designates this particular file as subject to the "Classpath"
  20. * exception as provided by Oracle in the GPL Version 2 section of the License
  21. * file that accompanied this code.
  22. *
  23. * Modifications:
  24. * If applicable, add the following below the License Header, with the fields
  25. * enclosed by brackets [] replaced by your own identifying information:
  26. * "Portions Copyright [year] [name of copyright owner]"
  27. *
  28. * Contributor(s):
  29. * If you wish your version of this file to be governed by only the CDDL or
  30. * only the GPL Version 2, indicate your decision by adding "[Contributor]
  31. * elects to include this software in this distribution under the [CDDL or GPL
  32. * Version 2] license." If you don't indicate a single choice of license, a
  33. * recipient has the option to distribute your version of this file under
  34. * either the CDDL, the GPL Version 2 or to extend the choice of license to
  35. * its licensees as provided above. However, if you add GPL Version 2 code
  36. * and therefore, elected the GPL Version 2 license, then the option applies
  37. * only if the new code is made subject to such option by the copyright
  38. * holder.
  39. */
  40. package org.glassfish.jersey.examples.bookmark.entity;
  41. import java.io.Serializable;
  42. import java.util.Collection;
  43. import javax.persistence.CascadeType;
  44. import javax.persistence.Column;
  45. import javax.persistence.Entity;
  46. import javax.persistence.Id;
  47. import javax.persistence.NamedQueries;
  48. import javax.persistence.NamedQuery;
  49. import javax.persistence.OneToMany;
  50. import javax.persistence.Table;
  51. /**
  52. * Entity class UserEntity.
  53. *
  54. * @author Jakub Podlesak (jakub.podlesak at oracle.com)
  55. */
  56. @SuppressWarnings("UnusedDeclaration")
  57. @Entity
  58. @Table(name = "USERS")
  59. @NamedQueries({
  60. @NamedQuery(name = "UserEntity.findByUserid", query = "SELECT u FROM UserEntity u WHERE u.userid = :userid"),
  61. @NamedQuery(name = "UserEntity.findByPassword", query = "SELECT u FROM UserEntity u WHERE u.password = :password"),
  62. @NamedQuery(name = "UserEntity.findByUsername", query = "SELECT u FROM UserEntity u WHERE u.username = :username"),
  63. @NamedQuery(name = "UserEntity.findByEmail", query = "SELECT u FROM UserEntity u WHERE u.email = :email")
  64. })
  65. public class UserEntity implements Serializable {
  66. @Id
  67. @Column(name = "USERID", nullable = false)
  68. private String userid;
  69. @Column(name = "PASSWORD", nullable = false)
  70. private String password;
  71. @Column(name = "USERNAME")
  72. private String username;
  73. @Column(name = "EMAIL")
  74. private String email;
  75. @OneToMany(cascade = CascadeType.ALL, mappedBy = "userEntity")
  76. private Collection<BookmarkEntity> bookmarkEntityCollection;
  77. /**
  78. * Creates a new instance of UserEntity
  79. */
  80. public UserEntity() {
  81. }
  82. /**
  83. * Creates a new instance of UserEntity with the specified values.
  84. *
  85. * @param userid the userid of the UserEntity
  86. */
  87. public UserEntity(String userid) {
  88. this.userid = userid;
  89. }
  90. /**
  91. * Creates a new instance of UserEntity with the specified values.
  92. *
  93. * @param userid the userid of the UserEntity
  94. * @param password the password of the UserEntity
  95. */
  96. public UserEntity(String userid, String password) {
  97. this.userid = userid;
  98. this.password = password;
  99. }
  100. /**
  101. * Gets the userid of this UserEntity.
  102. *
  103. * @return the userid
  104. */
  105. public String getUserid() {
  106. return this.userid;
  107. }
  108. /**
  109. * Sets the userid of this UserEntity to the specified value.
  110. *
  111. * @param userid the new userid
  112. */
  113. public void setUserid(String userid) {
  114. this.userid = userid;
  115. }
  116. /**
  117. * Gets the password of this UserEntity.
  118. *
  119. * @return the password
  120. */
  121. public String getPassword() {
  122. return this.password;
  123. }
  124. /**
  125. * Sets the password of this UserEntity to the specified value.
  126. *
  127. * @param password the new password
  128. */
  129. public void setPassword(String password) {
  130. this.password = password;
  131. }
  132. /**
  133. * Gets the username of this UserEntity.
  134. *
  135. * @return the username
  136. */
  137. public String getUsername() {
  138. return this.username;
  139. }
  140. /**
  141. * Sets the username of this UserEntity to the specified value.
  142. *
  143. * @param username the new username
  144. */
  145. public void setUsername(String username) {
  146. this.username = username;
  147. }
  148. /**
  149. * Gets the email of this UserEntity.
  150. *
  151. * @return the email
  152. */
  153. public String getEmail() {
  154. return this.email;
  155. }
  156. /**
  157. * Sets the email of this UserEntity to the specified value.
  158. *
  159. * @param email the new email
  160. */
  161. public void setEmail(String email) {
  162. this.email = email;
  163. }
  164. /**
  165. * Gets the bookmarkEntityCollection of this UserEntity.
  166. *
  167. * @return the bookmarkEntityCollection
  168. */
  169. public Collection<BookmarkEntity> getBookmarkEntityCollection() {
  170. return this.bookmarkEntityCollection;
  171. }
  172. /**
  173. * Sets the bookmarkEntityCollection of this UserEntity to the specified value.
  174. *
  175. * @param bookmarkEntityCollection the new bookmarkEntityCollection
  176. */
  177. public void setBookmarkEntityCollection(Collection<BookmarkEntity> bookmarkEntityCollection) {
  178. this.bookmarkEntityCollection = bookmarkEntityCollection;
  179. }
  180. /**
  181. * Returns a hash code value for the object. This implementation computes
  182. * a hash code value based on the id fields in this object.
  183. *
  184. * @return a hash code value for this object.
  185. */
  186. @Override
  187. public int hashCode() {
  188. int hash = 0;
  189. hash += (this.userid != null ? this.userid.hashCode() : 0);
  190. return hash;
  191. }
  192. /**
  193. * Determines whether another object is equal to this UserEntity. The result is
  194. * <code>true</code> if and only if the argument is not null and is a UserEntity object that
  195. * has the same id field values as this object.
  196. *
  197. * @param object the reference object with which to compare
  198. * @return <code>true</code> if this object is the same as the argument;
  199. * <code>false</code> otherwise.
  200. */
  201. @SuppressWarnings("StringEquality")
  202. @Override
  203. public boolean equals(Object object) {
  204. // TODO: Warning - this method won't work in the case the id fields are not set
  205. if (!(object instanceof UserEntity)) {
  206. return false;
  207. }
  208. UserEntity other = (UserEntity) object;
  209. return !(this.userid != other.userid && (this.userid == null || !this.userid.equals(other.userid)));
  210. }
  211. /**
  212. * Returns a string representation of the object. This implementation constructs
  213. * that representation based on the id fields.
  214. *
  215. * @return a string representation of the object.
  216. */
  217. @Override
  218. public String toString() {
  219. return "UserEntity{"
  220. + "userid='" + userid + '\''
  221. + '}';
  222. }
  223. }