/taurus-logic/src/org/taurus/domain/Access.java

http://tauruss.googlecode.com/ · Java · 154 lines · 97 code · 32 blank · 25 comment · 0 complexity · 24d259adefe7b6af4161d5a991477f54 MD5 · raw file

  1. /*
  2. * This file is part of Taurus
  3. *
  4. * Taurus is free software: you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation, either version 3 of the License, or
  7. * at your option) any later version.
  8. *
  9. * Taurus is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with Melenti. If not, see <http://www.gnu.org/licenses/>.
  16. */
  17. package org.taurus.domain;
  18. import java.util.Date;
  19. import javax.persistence.Column;
  20. import javax.persistence.Entity;
  21. import javax.persistence.FetchType;
  22. import javax.persistence.JoinColumn;
  23. import javax.persistence.ManyToOne;
  24. import javax.persistence.NamedQueries;
  25. import javax.persistence.NamedQuery;
  26. import javax.persistence.Table;
  27. import javax.persistence.Temporal;
  28. import javax.persistence.TemporalType;
  29. import org.taurus.domain.base.ModelBasic;
  30. import com.google.gson.annotations.Expose;
  31. /**
  32. * Contiene los accesos que tiene un usuario al sistema
  33. *
  34. * @version $Revision: 1.0 $ [04/12/2008]
  35. * @author henry molina <a href="mailto:henrymolinanoboa@gmail.com">taurus</a>
  36. */
  37. @Entity
  38. @Table(name = "tauruss_access")
  39. @NamedQueries( { @NamedQuery(name = "Access.findAccessByUserUnit", query = "SELECT o FROM Access o WHERE o.user.id = :idUser and o.unitOrganizational.id = :idUnitOrg and o.status = '1'") })
  40. public class Access extends ModelBasic {
  41. private static final long serialVersionUID = 4482660160393019209L;
  42. @Column(name = "read", length = 1, nullable = false)
  43. @Expose
  44. private String read;
  45. @Column(name = "write", length = 1, nullable = false)
  46. @Expose
  47. private String write;
  48. @Temporal(TemporalType.TIMESTAMP)
  49. @Column(name = "creation_date", nullable = true)
  50. @Expose
  51. private Date creationDate;
  52. @Temporal(TemporalType.TIMESTAMP)
  53. @Column(name = "deleted_date", nullable = true)
  54. @Expose
  55. private Date deletedDate;
  56. @Column(name = "status", length = 1, nullable = false)
  57. @Expose
  58. private String status;
  59. @ManyToOne(fetch = FetchType.LAZY)
  60. @JoinColumn(name = "user_id", nullable = false)
  61. @Expose
  62. private User user;
  63. @ManyToOne(fetch = FetchType.LAZY)
  64. @JoinColumn(name = "unit_organization_id", nullable = false)
  65. @Expose
  66. private UnitOrganizational unitOrganizational;
  67. /**
  68. *
  69. */
  70. public Access() {
  71. super();
  72. }
  73. public Access(Long id) {
  74. super(id);
  75. }
  76. public Date getCreationDate() {
  77. return this.creationDate;
  78. }
  79. public Date getDeletedDate() {
  80. return this.deletedDate;
  81. }
  82. public String getRead() {
  83. return this.read;
  84. }
  85. @Override
  86. public String getStatus() {
  87. return this.status;
  88. }
  89. public UnitOrganizational getUnitOrganizational() {
  90. return this.unitOrganizational;
  91. }
  92. @Override
  93. public User getUser() {
  94. return this.user;
  95. }
  96. public String getWrite() {
  97. return this.write;
  98. }
  99. public void setCreationDate(Date creationDate) {
  100. this.creationDate = creationDate;
  101. }
  102. public void setDeletedDate(Date deletedDate) {
  103. this.deletedDate = deletedDate;
  104. }
  105. public void setRead(String read) {
  106. this.read = read;
  107. }
  108. @Override
  109. public void setStatus(String status) {
  110. this.status = status;
  111. }
  112. public void setUnitOrganizational(UnitOrganizational unitOrganizational) {
  113. this.unitOrganizational = unitOrganizational;
  114. }
  115. @Override
  116. public void setUser(User user) {
  117. this.user = user;
  118. }
  119. public void setWrite(String write) {
  120. this.write = write;
  121. }
  122. }