/**
* Copyright 2010 JBoss Inc
*
* 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.process.audit;
import java.io.Serializable;
import java.util.Date;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Temporal;
import javax.persistence.TemporalType;
@Entity
public class ProcessInstanceLog implements Serializable {
private static final long serialVersionUID = 510l;
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private long id;
private long processInstanceId;
private String processId;
@Temporal(TemporalType.TIMESTAMP)
@Column(name = "start_date")
private Date start;
@Temporal(TemporalType.TIMESTAMP)
@Column(name = "end_date")
private Date end;
ProcessInstanceLog() {
}
public ProcessInstanceLog(long processInstanceId, String processId) {
setProcessInstanceId(processInstanceId);
setProcessId(processId);
setStart(new Date());
}
public long getId() {
return id;
}
void setId(long id) {
this.id = id;
}
public long getProcessInstanceId() {
return processInstanceId;
}
private void setProcessInstanceId(long processInstanceId) {
this.processInstanceId = processInstanceId;
}
public String getProcessId() {
return processId;
}
public void setProcessId(String processId) {
this.processId = processId;
}
public Date getStart() {
return start;
}
public void setStart(Date start) {
this.start = start;
}
public Date getEnd() {
return end;
}
public void setEnd(Date end) {
this.end = end;
}
public String toString() {
return "Process '" + processId + "' [" + processInstanceId + "]";
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((end == null) ? 0 : end.hashCode());
result = prime * result + (int) id;
result = prime * result
+ ((processId == null) ? 0 : processId.hashCode());
result = prime * result + (int) processInstanceId;
result = prime * result + ((start == null) ? 0 : start.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
ProcessInstanceLog other = (ProcessInstanceLog) obj;
if (end == null) {
if (other.end != null)
return false;
} else if (!end.equals(other.end))
return false;
if (id != other.id)
return false;
if (processId == null) {
if (other.processId != null)
return false;
} else if (!processId.equals(other.processId))
return false;
if (processInstanceId != other.processInstanceId)
return false;
if (start == null) {
if (other.start != null)
return false;
} else if (!start.equals(other.start))
return false;
return true;
}
}