/* * The MIT License * * Copyright 2012 jdmr. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ package mx.edu.um.mateo.general.model; import java.io.Serializable; import java.util.ArrayList; import java.util.List; import java.util.Objects; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.ManyToMany; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; import javax.persistence.Table; import javax.persistence.Version; import javax.validation.constraints.NotNull; import mx.edu.um.mateo.contabilidad.model.CentroCosto; /** * * @author jdmr */ @Entity @Table(name = "organizaciones") public class Organizacion implements Serializable { /** * */ private static final long serialVersionUID = 5507858542419663559L; @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id; @Version private Integer version; @NotNull @Column(unique = true, nullable = false, length = 6) private String codigo; @NotNull @Column(unique = true, nullable = false, length = 64) private String nombre; @NotNull @Column(unique = true, nullable = false, length = 128, name = "nombre_completo") private String nombreCompleto; @OneToMany(mappedBy = "organizacion", cascade = CascadeType.ALL) private List<Empresa> empresas; @ManyToMany private List<Reporte> reportes = new ArrayList<>(); private String centroCostoId; public Organizacion() { } public Organizacion(String codigo, String nombre, String nombreCompleto) { this.codigo = codigo; this.nombre = nombre; this.nombreCompleto = nombreCompleto; } /** * @return the id */ public Long getId() { return id; } /** * @param id the id to set */ public void setId(Long id) { this.id = id; } /** * @return the version */ public Integer getVersion() { return version; } /** * @param version the version to set */ public void setVersion(Integer version) { this.version = version; } /** * @return the codigo */ public String getCodigo() { return codigo; } /** * @param codigo the codigo to set */ public void setCodigo(String codigo) { this.codigo = codigo; } /** * @return the nombre */ public String getNombre() { return nombre; } /** * @param nombre the nombre to set */ public void setNombre(String nombre) { this.nombre = nombre; } /** * @return the nombreCompleto */ public String getNombreCompleto() { return nombreCompleto; } /** * @param nombreCompleto the nombreCompleto to set */ public void setNombreCompleto(String nombreCompleto) { this.nombreCompleto = nombreCompleto; } /** * @return the empresas */ public List<Empresa> getEmpresas() { return empresas; } /** * @param empresas the empresas to set */ public void setEmpresas(List<Empresa> empresas) { this.empresas = empresas; } /** * @return the reportes */ public List<Reporte> getReportes() { return reportes; } /** * @param reportes the reportes to set */ public void setReportes(List<Reporte> reportes) { this.reportes = reportes; } /** * @return the centroCostoId */ public String getCentroCostoId() { return centroCostoId; } /** * @param centroCostoId the centroCostoId to set */ public void setCentroCostoId(String centroCostoId) { this.centroCostoId = centroCostoId; } @Override public boolean equals(Object obj) { if (obj == null) { return false; } if (getClass() != obj.getClass()) { return false; } final Organizacion other = (Organizacion) obj; if (!Objects.equals(this.codigo, other.codigo)) { return false; } return true; } @Override public int hashCode() { int hash = 5; hash = 73 * hash + Objects.hashCode(this.id); hash = 73 * hash + Objects.hashCode(this.version); hash = 73 * hash + Objects.hashCode(this.codigo); return hash; } @Override public String toString() { return "Organizacion{" + "nombre=" + nombre + '}'; } }