001/**
002 * Copyright 2005-2015 The Kuali Foundation
003 *
004 * Licensed under the Educational Community License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 * http://www.opensource.org/licenses/ecl2.php
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 */
016package org.kuali.rice.krms.impl.repository;
017
018import org.kuali.rice.krad.data.jpa.PortableSequenceGenerator;
019import org.kuali.rice.krms.api.repository.type.KrmsAttributeDefinitionContract;
020
021import javax.persistence.Column;
022import javax.persistence.Entity;
023import javax.persistence.FetchType;
024import javax.persistence.GeneratedValue;
025import javax.persistence.Id;
026import javax.persistence.JoinColumn;
027import javax.persistence.ManyToOne;
028import javax.persistence.Table;
029import java.io.Serializable;
030
031/**
032 * This class represents an AgendaAttribute business object.
033 * Agenda attributes provide a way to attach custom data to an agenda based on the agenda's type.
034 *
035 * @author Kuali Rice Team (rice.collab@kuali.org)
036 */
037@Entity
038@Table(name = "KRMS_AGENDA_ATTR_T")
039public class AgendaAttributeBo extends BaseAttributeBo implements Serializable {
040
041    private static final long serialVersionUID = 1l;
042
043    @PortableSequenceGenerator(name = "KRMS_AGENDA_ATTR_S")
044    @GeneratedValue(generator = "KRMS_AGENDA_ATTR_S")
045    @Id
046    @Column(name = "AGENDA_ATTR_ID")
047    private String id;
048
049    @ManyToOne(fetch = FetchType.LAZY)
050    @JoinColumn(name = "AGENDA_ID")
051    private AgendaBo agenda;
052
053    @ManyToOne(fetch = FetchType.LAZY)
054    @JoinColumn(name = "ATTR_DEFN_ID", referencedColumnName = "ATTR_DEFN_ID")
055    private KrmsAttributeDefinitionBo attributeDefinition;
056
057    @Override
058    public KrmsAttributeDefinitionContract getAttributeDefinition() {
059        return attributeDefinition;
060    }
061
062    public void setAttributeDefinition(KrmsAttributeDefinitionBo attributeDefinition) {
063        this.attributeDefinition = attributeDefinition;
064    }
065
066    public String getAgendaId() {
067        if (agenda != null) {
068            return agenda.getId();
069        }
070
071        return null;
072    }
073
074    public AgendaBo getAgenda() {
075        return agenda;
076    }
077
078    public void setAgenda(AgendaBo agenda) {
079        this.agenda = agenda;
080    }
081
082    @Override
083    public String getId() {
084        return id;
085    }
086
087    public void setId(String id) {
088        this.id = id;
089    }
090}