EventSettings.java 3.86 KB
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package fi.insomnia.bortal.model;

import java.util.List;

import javax.persistence.CascadeType;
import javax.persistence.Column;
import javax.persistence.EmbeddedId;
import javax.persistence.Entity;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
import javax.persistence.NamedQueries;
import javax.persistence.NamedQuery;
import javax.persistence.OneToMany;
import javax.persistence.Table;
import javax.persistence.Version;

/**
 * 
 */
@Entity
@Table(name = "event_settings")
@NamedQueries( {
        @NamedQuery(name = "EventSettings.findAll", query = "SELECT e FROM EventSettings e"),
        @NamedQuery(name = "EventSettings.findByBundleCountry", query = "SELECT e FROM EventSettings e WHERE e.bundleCountry = :bundleCountry")
})
public class EventSettings implements EventChildInterface{

    private static final long serialVersionUID = 1L;
    @EmbeddedId
    private EventPk id;

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

    @Column(name = "bundle_country")
    private String bundleCountry;

    @OneToMany(cascade = CascadeType.ALL, mappedBy = "settings")
    private List<Event> events;


    @ManyToOne
    @JoinColumn(name = "users_id", referencedColumnName = "users_id", nullable = false)
    private User admin;

    @Version
    @Column(nullable = false)
    private int jpaVersionField;

    public EventSettings() {
    }

    public EventSettings(EventPk eventSettingsId) {
        this.id = eventSettingsId;
    }

    public List<Event> getEvents() {
        return events;
    }

    public void setEvents(List<Event> eventList) {
        this.events = eventList;
    }

    @Override
    public int hashCode() {
        int hash = 0;
        hash += (getId() != null ? getId().hashCode() : 0);
        return hash;
    }

    @Override
    public boolean equals(Object object) {
        // TODO: Warning - this method won't work in the case the id fields are
        // not set
        if (!(object instanceof EventSettings)) {
            return false;
        }
        EventSettings other = (EventSettings) object;
        if ((this.getId() == null && other.getId() != null)
                || (this.getId() != null && !this.id.equals(other.id))) {
            return false;
        }
        return true;
    }

    @Override
    public String toString() {
        return "fi.insomnia.bortal.model.EventSettings[id=" + getId() + "]";
    }

    /**
     * @return the id
     */
    @Override
    public EventPk getId() {
        return id;
    }

    /**
     * @param id
     *            the id to set
     */
    @Override
    public void setId(EventPk id) {
        this.id = id;
    }

    /**
     * @return the jpaVersionField
     */
    @Override
    public int getJpaVersionField() {
        return jpaVersionField;
    }

    /**
     * @param jpaVersionField
     *            the jpaVersionField to set
     */
    @Override
    public void setJpaVersionField(int jpaVersionField) {
        this.jpaVersionField = jpaVersionField;
    }

    /**
     * @return the organisation
     */
    public String getOrganisation() {
        return organisation;
    }

    /**
     * @param organisation the organisation to set
     */
    public void setOrganisation(String organisation) {
        this.organisation = organisation;
    }

    /**
     * @return the bundleCountry
     */
    public String getBundleCountry() {
        return bundleCountry;
    }

    /**
     * @param bundleCountry the bundleCountry to set
     */
    public void setBundleCountry(String bundleCountry) {
        this.bundleCountry = bundleCountry;
    }

    /**
     * @return the admin
     */
    public User getAdmin() {
        return admin;
    }

    /**
     * @param admin the admin to set
     */
    public void setAdmin(User admin) {
        this.admin = admin;
    }
}