package org.activityinfo.server.database.hibernate.entity; /* * #%L * ActivityInfo Server * %% * Copyright (C) 2009 - 2013 UNICEF * %% * This program 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. * * 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 for more details. * * You should have received a copy of the GNU General Public * License along with this program. If not, see * <http://www.gnu.org/licenses/gpl-3.0.html>. * #L% */ // Generated Apr 9, 2009 7:58:20 AM by Hibernate Tools 3.2.2.GA import javax.persistence.*; /** * @author Alex Bertram */ @Entity public class AttributeValue implements java.io.Serializable { private AttributeValueId id; private Attribute attribute; private Site site; private boolean value; public AttributeValue() { } public AttributeValue(Site site, Attribute attribute, boolean value) { this.id = new AttributeValueId(site.getId(), attribute.getId()); this.site = site; this.attribute = attribute; this.value = value; } @EmbeddedId @AttributeOverrides({@AttributeOverride(name = "siteId", column = @Column(name = "SiteId", nullable = false)), @AttributeOverride(name = "attributeId", column = @Column(name = "AttributeId", nullable = false))}) public AttributeValueId getId() { return this.id; } public void setId(AttributeValueId id) { this.id = id; } @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "AttributeId", nullable = false, insertable = false, updatable = false) public Attribute getAttribute() { return this.attribute; } public void setAttribute(Attribute attribute) { this.attribute = attribute; } @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "SiteId", nullable = false, insertable = false, updatable = false) public Site getSite() { return this.site; } public void setSite(Site site) { this.site = site; } @Column(name = "Value") public boolean getValue() { return this.value; } public void setValue(boolean value) { this.value = value; } }