/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
- /*
- * This file is part of Taurus
- *
- * Taurus is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * at your option) any later version.
- *
- * Taurus is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with Melenti. If not, see <http://www.gnu.org/licenses/>.
- */
-
- package org.taurus.domain;
-
- import java.util.Date;
-
- import javax.persistence.Column;
- import javax.persistence.Entity;
- import javax.persistence.FetchType;
- import javax.persistence.JoinColumn;
- import javax.persistence.ManyToOne;
- import javax.persistence.NamedQueries;
- import javax.persistence.NamedQuery;
- import javax.persistence.Table;
- import javax.persistence.Temporal;
- import javax.persistence.TemporalType;
-
- import org.taurus.domain.base.ModelBasic;
-
- import com.google.gson.annotations.Expose;
-
- /**
- * Contiene los accesos que tiene un usuario al sistema
- *
- * @version $Revision: 1.0 $ [04/12/2008]
- * @author henry molina <a href="mailto:henrymolinanoboa@gmail.com">taurus</a>
- */
- @Entity
- @Table(name = "tauruss_access")
- @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'") })
- public class Access extends ModelBasic {
-
- private static final long serialVersionUID = 4482660160393019209L;
-
- @Column(name = "read", length = 1, nullable = false)
- @Expose
- private String read;
-
- @Column(name = "write", length = 1, nullable = false)
- @Expose
- private String write;
-
- @Temporal(TemporalType.TIMESTAMP)
- @Column(name = "creation_date", nullable = true)
- @Expose
- private Date creationDate;
-
- @Temporal(TemporalType.TIMESTAMP)
- @Column(name = "deleted_date", nullable = true)
- @Expose
- private Date deletedDate;
-
- @Column(name = "status", length = 1, nullable = false)
- @Expose
- private String status;
-
- @ManyToOne(fetch = FetchType.LAZY)
- @JoinColumn(name = "user_id", nullable = false)
- @Expose
- private User user;
-
- @ManyToOne(fetch = FetchType.LAZY)
- @JoinColumn(name = "unit_organization_id", nullable = false)
- @Expose
- private UnitOrganizational unitOrganizational;
-
- /**
- *
- */
-
- public Access() {
- super();
- }
-
- public Access(Long id) {
- super(id);
- }
-
- public Date getCreationDate() {
- return this.creationDate;
- }
-
- public Date getDeletedDate() {
- return this.deletedDate;
- }
-
- public String getRead() {
- return this.read;
- }
-
- @Override
- public String getStatus() {
- return this.status;
- }
-
- public UnitOrganizational getUnitOrganizational() {
- return this.unitOrganizational;
- }
-
- @Override
- public User getUser() {
- return this.user;
- }
-
- public String getWrite() {
- return this.write;
- }
-
- public void setCreationDate(Date creationDate) {
- this.creationDate = creationDate;
- }
-
- public void setDeletedDate(Date deletedDate) {
- this.deletedDate = deletedDate;
- }
-
- public void setRead(String read) {
- this.read = read;
- }
-
- @Override
- public void setStatus(String status) {
- this.status = status;
- }
-
- public void setUnitOrganizational(UnitOrganizational unitOrganizational) {
- this.unitOrganizational = unitOrganizational;
- }
-
- @Override
- public void setUser(User user) {
- this.user = user;
- }
-
- public void setWrite(String write) {
- this.write = write;
- }
-
- }