WebParamsEntity.java
/*
* Copyright (C) 2003-2017 eXo Platform SAS.
*
* This program 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.
*
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
*/
package org.exoplatform.commons.notification.impl.jpa.web.entity;
import org.exoplatform.commons.api.persistence.ExoEntity;
import javax.persistence.*;
/**
* Created by The eXo Platform SAS
* Author : eXoPlatform
* exo@exoplatform.com
* Mar 07, 2017
*/
@Entity(name = "NotificationsWebParamsEntity")
@ExoEntity
@Table(name = "NTF_WEB_NOTIFS_PARAMS")
public class WebParamsEntity {
@Id
@Column(name = "WEB_NOTIF_PARAMS_ID")
@SequenceGenerator(name="SEQ_NTF_WEB_PARAMS", sequenceName="SEQ_NTF_WEB_PARAMS")
@GeneratedValue(strategy=GenerationType.AUTO, generator="SEQ_NTF_WEB_PARAMS")
private long id;
@Column(name = "PARAM_NAME")
private String name;
@Column(name = "PARAM_VALUE")
private String value;
@ManyToOne
@JoinColumn(name = "WEB_NOTIF_ID")
private WebNotifEntity webNotification;
public long getId() {
return id;
}
public String getName() {
return name;
}
public WebParamsEntity setName(String name) {
this.name = name;
return this;
}
public String getValue() {
return value;
}
public WebParamsEntity setValue(String value) {
this.value = value;
return this;
}
public WebNotifEntity getNotification() {
return webNotification;
}
public WebParamsEntity setNotification(WebNotifEntity webNotification) {
this.webNotification = webNotification;
webNotification.addParameter(this);
return this;
}
}