/** * Copyright (c) 2009 - 2012 Red Hat, Inc. * * This software is licensed to you under the GNU General Public License, * version 2 (GPLv2). There is NO WARRANTY for this software, express or * implied, including the implied warranties of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2 * along with this software; if not, see * http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * * Red Hat trademarks are not licensed under GPLv2. No permission is * granted to use or replicate Red Hat trademarks that are incorporated * in this software or its documentation. */ package org.candlepin.model; import com.fasterxml.jackson.annotation.JsonFilter; import org.hibernate.annotations.GenericGenerator; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.Id; import javax.persistence.OneToOne; import javax.persistence.Table; import javax.validation.constraints.NotNull; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlTransient; /** * Represents certificate used to entitle a consumer */ @XmlRootElement(name = "cert") @XmlAccessorType(XmlAccessType.PROPERTY) @Entity @Table(name = "cp_cont_access_cert") @JsonFilter("ContentAccessCertificateFilter") public class ContentAccessCertificate extends RevocableCertificate implements Certificate { @Id @GeneratedValue(generator = "system-uuid") @GenericGenerator(name = "system-uuid", strategy = "uuid") @Column(length = 32) @NotNull private String id; @OneToOne(mappedBy = "idCert", fetch = FetchType.LAZY) private Consumer consumer; @Override public String getId() { return id; } public void setId(String id) { this.id = id; } @XmlTransient public Consumer getConsumer() { return consumer; } public void setConsumer(Consumer consumer) { this.consumer = consumer; } @Override public int hashCode() { return this.id == null ? 0 : id.hashCode(); } @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (obj == null || (getClass() != obj.getClass())) { return false; } ContentAccessCertificate other = (ContentAccessCertificate) obj; if (id == other.id && other.getConsumer().getId().equals(this.getConsumer().getId())) { return true; } return false; } }