view src/main/java/de/intevation/lada/model/stamm/MgGrp.java @ 842:9f4be0bc724d

Added 'readonly' attribute to model.
author Raimund Renkert <raimund.renkert@intevation.de>
date Thu, 21 Jan 2016 15:36:33 +0100
parents 7fbf0246012c
children
line wrap: on
line source
/* Copyright (C) 2013 by Bundesamt fuer Strahlenschutz
 * Software engineering by Intevation GmbH
 *
 * This file is Free Software under the GNU GPL (v>=3)
 * and comes with ABSOLUTELY NO WARRANTY! Check out
 * the documentation coming with IMIS-Labordaten-Application for details.
 */
package de.intevation.lada.model.stamm;

import java.io.Serializable;

import javax.persistence.EmbeddedId;
import javax.persistence.Entity;
import javax.persistence.Table;


/**
 * The persistent class for the mg_grp database table.
 */
@Entity
@Table(name="mg_grp")
public class MgGrp implements Serializable {
    private static final long serialVersionUID = 1L;

    @EmbeddedId
    private MgGrpPK id;

    public MgGrp() {
    }

    public MgGrpPK getId() {
        return this.id;
    }

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

}
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)