/** * 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 org.hibernate.annotations.DiscriminatorFormula; import org.hibernate.annotations.GenericGenerator; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.Id; import javax.persistence.Inheritance; import javax.persistence.InheritanceType; import javax.persistence.Table; import javax.validation.constraints.NotNull; import javax.validation.constraints.Size; import javax.xml.bind.annotation.XmlTransient; /** * ContentOverride abstract class to share code between * different override types, consumer and activation key for now */ @Entity @Table(name = ContentOverride.DB_TABLE) @Inheritance(strategy = InheritanceType.SINGLE_TABLE) @DiscriminatorFormula("case when key_id is null then 'consumer' ELSE 'activation_key' end") public class ContentOverride extends AbstractHibernateObject { /** Name of the table backing this object in the database */ public static final String DB_TABLE = "cp_content_override"; @Id @GeneratedValue(generator = "system-uuid") @GenericGenerator(name = "system-uuid", strategy = "uuid") @Column(length = 32) @NotNull private String id; @Column(name = "content_label") @Size(max = 255) @NotNull private String contentLabel; @Size(max = 255) @NotNull private String name; @Size(max = 255) @NotNull private String value; public ContentOverride() { } public ContentOverride(String contentLabel, String name, String value) { this.setContentLabel(contentLabel); this.setName(name); this.setValue(value); } @XmlTransient public String getId() { return id; } public void setId(String id) { this.id = id; } public void setContentLabel(String contentLabel) { this.contentLabel = contentLabel; } public String getContentLabel() { return contentLabel; } public void setName(String name) { this.name = name; } public String getName() { return name; } public void setValue(String value) { this.value = value; } public String getValue() { return value; } }