com.marand.thinkmed.medications.model.impl.MedicationWarningImpl.java Source code

Java tutorial

Introduction

Here is the source code for com.marand.thinkmed.medications.model.impl.MedicationWarningImpl.java

Source

/*
 * Copyright (c) 2010-2014 Marand d.o.o. (www.marand.com)
 *
 * This file is part of Think!Med Clinical Medication Management.
 *
 * Think!Med Clinical Medication Management is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * Think!Med Clinical Medication Management 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 Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with Think!Med Clinical Medication Management.  If not, see <http://www.gnu.org/licenses/>.
 */

package com.marand.thinkmed.medications.model.impl;

import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.EnumType;
import javax.persistence.Enumerated;
import javax.persistence.FetchType;
import javax.persistence.Index;
import javax.persistence.ManyToOne;
import javax.persistence.Table;

import com.marand.maf.core.hibernate.entity.AbstractEffectiveEntity;
import com.marand.thinkmed.medications.model.Medication;
import com.marand.thinkmed.medications.model.MedicationWarning;
import com.marand.thinkmed.medicationsexternal.WarningSeverity;
import org.apache.commons.lang3.builder.ToStringBuilder;

/**
 * @author Nejc Korasa
 */
@Entity
@Table(indexes = { @Index(name = "xfMedWarningMedication", columnList = "medication_id"),
        @Index(name = "xpMedWarningSeverity", columnList = "severity") })
public class MedicationWarningImpl extends AbstractEffectiveEntity implements MedicationWarning {
    private Medication medication;
    private WarningSeverity severity;
    private String description;

    @Override
    @ManyToOne(targetEntity = MedicationImpl.class, fetch = FetchType.LAZY, optional = false)
    public Medication getMedication() {
        return medication;
    }

    @Override
    public void setMedication(final Medication medication) {
        this.medication = medication;
    }

    @Override
    @Enumerated(EnumType.STRING)
    @Column(nullable = false)
    public WarningSeverity getSeverity() {
        return severity;
    }

    @Override
    public void setSeverity(final WarningSeverity severity) {
        this.severity = severity;
    }

    @Override
    public String getDescription() {
        return description;
    }

    @Override
    public void setDescription(final String description) {
        this.description = description;
    }

    @Override
    protected void appendToString(final ToStringBuilder tsb) {
        super.appendToString(tsb);

        tsb.append("medication", medication).append("severity", severity).append("description", description);
    }
}