Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright 2017 Red Hat, Inc. and/or its affiliates.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jbpm.services.task.impl.model;
import java.io.IOException;
import java.io.ObjectInput;
import java.io.ObjectOutput;
import java.util.Collections;
import java.util.List;
import javax.persistence.CascadeType;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Index;
import javax.persistence.JoinColumn;
import javax.persistence.JoinTable;
import javax.persistence.ManyToMany;
import javax.persistence.OneToMany;
import javax.persistence.SequenceGenerator;
import javax.persistence.Table;
import org.jbpm.services.task.utils.CollectionUtils;
import org.kie.api.task.model.I18NText;
import org.kie.api.task.model.OrganizationalEntity;
import org.kie.internal.task.api.model.NotificationType;
@Entity
@Table(name="Notification",
indexes = {@Index(name = "IDX_Not_EscId", columnList="Escalation_Notifications_Id")})
@SequenceGenerator(name="notificationIdSeq", sequenceName="NOTIFICATION_ID_SEQ", allocationSize=1)
public class NotificationImpl implements org.kie.internal.task.api.model.Notification {
@Id
@GeneratedValue(strategy = GenerationType.AUTO, generator="notificationIdSeq")
@Column(name = "id")
private Long id;
@OneToMany(cascade = CascadeType.ALL, targetEntity=I18NTextImpl.class)
@JoinColumn(name = "Notification_Documentation_Id", nullable = true)
private List documentation = Collections.emptyList();
private int priority;
@ManyToMany(targetEntity=OrganizationalEntityImpl.class)
@JoinTable(name = "Notification_Recipients", joinColumns = @JoinColumn(name = "task_id"), inverseJoinColumns = @JoinColumn(name = "entity_id"),
indexes = {@Index(name = "IDX_NotRec_Entity", columnList="entity_id"),
@Index(name = "IDX_NotRec_Task", columnList="task_id")})
private List recipients = Collections.emptyList();
@ManyToMany(targetEntity=OrganizationalEntityImpl.class)
@JoinTable(name = "Notification_BAs", joinColumns = @JoinColumn(name = "task_id"), inverseJoinColumns = @JoinColumn(name = "entity_id"),
indexes = {@Index(name = "IDX_NotBAs_Entity", columnList="entity_id"),
@Index(name = "IDX_NotBAs_Task", columnList="task_id")})
private List businessAdministrators = Collections.emptyList();
@OneToMany(cascade = CascadeType.ALL, targetEntity=I18NTextImpl.class)
@JoinColumn(name = "Notification_Names_Id", nullable = true)
private List names = Collections.emptyList();
@OneToMany(cascade = CascadeType.ALL, targetEntity=I18NTextImpl.class)
@JoinColumn(name = "Notification_Subjects_Id", nullable = true)
private List subjects = Collections.emptyList();
@OneToMany(cascade = CascadeType.ALL, targetEntity=I18NTextImpl.class)
@JoinColumn(name = "Notification_Descriptions_Id", nullable = true)
private List descriptions = Collections.emptyList();
public void writeExternal(ObjectOutput out) throws IOException {
out.writeLong( id );
out.writeInt( priority );
CollectionUtils.writeOrganizationalEntityList( recipients, out );
CollectionUtils.writeOrganizationalEntityList( businessAdministrators, out );
CollectionUtils.writeI18NTextList( documentation, out );
CollectionUtils.writeI18NTextList( names, out );
CollectionUtils.writeI18NTextList( subjects, out );
CollectionUtils.writeI18NTextList( descriptions, out );
}
public void readExternal(ObjectInput in) throws IOException,
ClassNotFoundException {
id = in.readLong();
priority = in.readInt();
recipients = CollectionUtils.readOrganizationalEntityList( in );
businessAdministrators = CollectionUtils.readOrganizationalEntityList( in );
documentation = CollectionUtils.readI18NTextList( in );
names = CollectionUtils.readI18NTextList( in );
subjects = CollectionUtils.readI18NTextList( in );
descriptions = CollectionUtils.readI18NTextList( in );
}
public Long getId() {
return id;
}
public void setId(long id) {
this.id = id;
}
public NotificationType getNotificationType() {
return NotificationType.Default;
}
public List getDocumentation() {
return documentation;
}
public void setDocumentation(List documentation) {
this.documentation = documentation;
}
public int getPriority() {
return priority;
}
public void setPriority(int priority) {
this.priority = priority;
}
public List getRecipients() {
return recipients;
}
public void setRecipients(List recipients) {
this.recipients = recipients;
}
public List getBusinessAdministrators() {
return businessAdministrators;
}
public void setBusinessAdministrators(List businessAdministrators) {
this.businessAdministrators = businessAdministrators;
}
public List getNames() {
return names;
}
public void setNames(List names) {
this.names = names;
}
public List getSubjects() {
return subjects;
}
public void setSubjects(List subjects) {
this.subjects = subjects;
}
public List getDescriptions() {
return descriptions;
}
public void setDescriptions(List descriptions) {
this.descriptions = descriptions;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + priority;
result = prime * result + CollectionUtils.hashCode( documentation );
result = prime * result + CollectionUtils.hashCode( recipients );
result = prime * result + CollectionUtils.hashCode( businessAdministrators );
result = prime * result + CollectionUtils.hashCode( names );
result = prime * result + CollectionUtils.hashCode( subjects );
result = prime * result + CollectionUtils.hashCode( descriptions );
return result;
}
@Override
public boolean equals(Object obj) {
if ( this == obj ) return true;
if ( obj == null ) return false;
if ( !(obj instanceof NotificationImpl) ) return false;
NotificationImpl other = (NotificationImpl) obj;
return CollectionUtils.equals( businessAdministrators, other.businessAdministrators ) && CollectionUtils.equals( documentation, other.documentation )
&& CollectionUtils.equals( recipients, other.recipients ) && CollectionUtils.equals( descriptions, other.descriptions ) && CollectionUtils.equals( names, other.names )
&& CollectionUtils.equals( subjects, other.subjects );
}
}