/** * ============================================================================= * * ORCID (R) Open Source * http://orcid.org * * Copyright (c) 2012-2014 ORCID, Inc. * Licensed under an MIT-Style License (MIT) * http://orcid.org/open-source-license * * This copyright and license information (including a link to the full license) * shall be included in its entirety in all copies or substantial portion of * the software. * * ============================================================================= */ package org.orcid.persistence.jpa.entities; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.DiscriminatorValue; import javax.persistence.Entity; import javax.persistence.JoinColumn; import javax.persistence.OneToMany; /** * * @author Will Simpson * */ @Entity @DiscriminatorValue("PERMISSION") public class NotificationAddItemsEntity extends NotificationEntity implements ActionableNotificationEntity { private static final long serialVersionUID = 1L; private String authorizationUrl; private Set<NotificationItemEntity> notificationItems; @Column(name = "authorization_url") public String getAuthorizationUrl() { return authorizationUrl; } public void setAuthorizationUrl(String authorizationUrl) { this.authorizationUrl = authorizationUrl; } @OneToMany(cascade = CascadeType.ALL) @JoinColumn(name = "notification_id") public Set<NotificationItemEntity> getNotificationItems() { return notificationItems; } public void setNotificationItems(Set<NotificationItemEntity> notificationItems) { this.notificationItems = notificationItems; } }