public abstract class Notification {
protected Long id;
protected Subscription subscription;
protected Notification(Subscription subscription) {
this.subscription = subscription;
}
}
public class EmailNotification extends Notification {
private Email email;
EmailNotification() {
super(null);
}
public Email getEmail() {
return email;
}
}