All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.kuali.rice.krad.test.conference.PresenterInfo Maven / Gradle / Ivy

/*
 * Copyright 2006-2014 The Kuali Foundation
 *
 * Licensed under the Educational Community License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.opensource.org/licenses/ecl2.php
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.kuali.rice.krad.test.conference;

import org.kuali.rice.krad.data.jpa.PortableSequenceGenerator;

import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.OneToOne;
import javax.persistence.Table;
import java.io.Serializable;

@Entity
@Table(name="KRTST_CONF_PRESENTER_T")
public class PresenterInfo implements Serializable {

    private static final long serialVersionUID = 742222239004343465L;

    @Id
    @Column(name = "ID")
    @GeneratedValue(generator = "KRTST_CONF_PRESENTER_S")
    @PortableSequenceGenerator(name = "KRTST_CONF_PRESENTER_S")
    private String id;

    @Column(name = "NM")
    private String name;

    @Column(name = "INST_NM")
    private String institution;

    public String getId() {
        return id;
    }

    public void setId(String id) {
        this.id = id;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getInstitution() {
        return institution;
    }

    public void setInstitution(String institution) {
        this.institution = institution;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy