/* * RHQ Management Platform * Copyright (C) 2005-2008 Red Hat, Inc. * All rights reserved. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License, version 2, as * published by the Free Software Foundation, and/or the GNU Lesser * General Public License, version 2.1, also as published by the Free * Software Foundation. * * This program 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 and the GNU Lesser General Public License * for more details. * * You should have received a copy of the GNU General Public License * and the GNU Lesser General Public License along with this program; * if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ package org.rhq.core.domain.content; import java.io.Serializable; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.NamedQueries; import javax.persistence.NamedQuery; import javax.persistence.PrePersist; import javax.persistence.SequenceGenerator; import javax.persistence.Table; /** * This is the many-to-many entity that correlates an advisory with a package. * * @author Pradeep Kilambi */ @Entity @NamedQueries( { @NamedQuery(name = AdvisoryCVE.FIND_CVE_BY_ADV_ID, query = "SELECT ac FROM AdvisoryCVE AS ac WHERE ac.advisory.id = :advId"), @NamedQuery(name = AdvisoryCVE.DELETE_BY_ADV_ID, query = "DELETE AdvisoryCVE ac WHERE ac.advisory.id = :advId") }) @SequenceGenerator(allocationSize = org.rhq.core.domain.util.Constants.ALLOCATION_SIZE, name = "RHQ_ADVISORY_CVE_ID_SEQ", sequenceName = "RHQ_ADVISORY_CVE_ID_SEQ") @Table(name = "RHQ_ADVISORY_CVE") public class AdvisoryCVE implements Serializable { private static final long serialVersionUID = 1L; public static final String FIND_CVE_BY_ADV_ID = "AdvisoryCVE.findCveByAveId"; public static final String DELETE_BY_ADV_ID = "AdvisoryCVE.deleteByAveId"; /* * http://opensource.atlassian.com/projects/hibernate/browse/EJB-286 Hibernate seems to want these mappings in the * @IdClass and ignore these here, even though the mappings should be here and no mappings should be needed in the * @IdClass. */ @Column(name = "ID", nullable = false) @GeneratedValue(strategy = GenerationType.AUTO, generator = "RHQ_ADVISORY_CVE_ID_SEQ") @Id private int id; @ManyToOne @JoinColumn(name = "ADVISORY_ID", referencedColumnName = "ID", nullable = false) private Advisory advisory; @ManyToOne @JoinColumn(name = "CVE_ID", referencedColumnName = "ID", nullable = false) private CVE cve; @Column(name = "LAST_MODIFIED", nullable = false) private long lastModifiedDate; protected AdvisoryCVE() { } public AdvisoryCVE(Advisory adv, CVE cve) { this.advisory = adv; this.cve = cve; } public int getId() { return id; } public Advisory getAdvisory() { return advisory; } public void setAdvisory(Advisory advisory) { this.advisory = advisory; } public CVE getCVE() { return cve; } public void setPkg(CVE cve) { this.cve = cve; } public long getLastModifiedDate() { return lastModifiedDate; } public void setLastModifiedDate(long lastModifiedDate) { this.lastModifiedDate = lastModifiedDate; } @PrePersist void onPersist() { this.setLastModifiedDate(System.currentTimeMillis()); } @Override public String toString() { StringBuilder str = new StringBuilder("AdvisoryCVE: "); str.append(", Advisory=[").append(this.advisory).append("]"); str.append(", CVE=[").append(this.cve).append("]"); return str.toString(); } @Override public int hashCode() { int result = 1; result = (31 * result) + ((advisory == null) ? 0 : advisory.hashCode()); result = (31 * result) + ((cve == null) ? 0 : cve.hashCode()); return result; } @Override public boolean equals(Object obj) { if (this == obj) { return true; } if ((obj == null) || (!(obj instanceof AdvisoryCVE))) { return false; } final AdvisoryCVE other = (AdvisoryCVE) obj; if (advisory == null) { if (other.advisory != null) { return false; } } else if (!advisory.equals(other.advisory)) { return false; } if (cve == null) { if (other.cve != null) { return false; } } else if (!cve.equals(other.cve)) { return false; } return true; } }