public class ProcessThreadInfo
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
protected java.lang.String |
actid
The activity id.
|
protected java.lang.String |
activity
The activity name.
|
protected java.lang.String |
data
The data of the process.
|
protected java.lang.String |
edges
The data edges of the process.
|
protected java.lang.String |
exception
The exception that has just occurred in the process (if any).
|
protected java.lang.String |
id
The thread that executed this activity.
|
protected java.lang.String |
lane
The lane name.
|
protected java.lang.String |
parentid
The parent id.
|
protected java.lang.String |
pool
The pool name.
|
protected boolean |
waiting
Is the process in a waiting state.
|
Constructor and Description |
---|
ProcessThreadInfo()
Create a new info.
|
ProcessThreadInfo(java.lang.String id,
java.lang.String parentid,
java.lang.String activity,
java.lang.String actid,
java.lang.String pool,
java.lang.String lane)
Create a new history info.
|
ProcessThreadInfo(java.lang.String id,
java.lang.String parentid,
java.lang.String activity,
java.lang.String actid,
java.lang.String pool,
java.lang.String lane,
java.lang.String exception,
boolean waiting,
java.lang.String data,
java.lang.String edges)
Create a new process info.
|
Modifier and Type | Method and Description |
---|---|
boolean |
equals(java.lang.Object obj)
Test if two objects are equal.
|
java.lang.String |
getActId()
Get the actid.
|
java.lang.String |
getActivity()
Get the activity.
|
java.lang.String |
getData()
Get the data.
|
void |
getData(java.lang.String data)
Set the data.
|
java.lang.String |
getEdges()
Get the edges.
|
java.lang.String |
getException()
Get the exception.
|
java.lang.String |
getLane()
Get the lane.
|
java.lang.String |
getParentId()
Get the parentid.
|
java.lang.String |
getPool()
Get the pool.
|
java.lang.String |
getThreadId()
Get the thread id.
|
int |
hashCode()
Get the hashcode
|
boolean |
isWaiting()
Get the waiting flag.
|
void |
setActId(java.lang.String actid)
Set the actid.
|
void |
setActivity(java.lang.String activity)
Set the activity.
|
void |
setEdges(java.lang.String edges)
Set the edges.
|
void |
setException(java.lang.String exception)
Set the exception.
|
void |
setLane(java.lang.String lane)
Set the lane.
|
void |
setParentId(java.lang.String parentid)
Set the parentid.
|
void |
setPool(java.lang.String pool)
Set the pool.
|
void |
setThreadId(java.lang.String id)
Set the thread id.
|
void |
setWaiting(boolean waiting)
Set the waiting flag.
|
java.lang.String |
toString()
Get the string representation.
|
protected java.lang.String id
protected java.lang.String parentid
protected java.lang.String activity
protected java.lang.String actid
protected java.lang.String pool
protected java.lang.String lane
protected java.lang.String exception
protected boolean waiting
protected java.lang.String data
protected java.lang.String edges
public ProcessThreadInfo()
public ProcessThreadInfo(java.lang.String id, java.lang.String parentid, java.lang.String activity, java.lang.String actid, java.lang.String pool, java.lang.String lane)
public ProcessThreadInfo(java.lang.String id, java.lang.String parentid, java.lang.String activity, java.lang.String actid, java.lang.String pool, java.lang.String lane, java.lang.String exception, boolean waiting, java.lang.String data, java.lang.String edges)
public java.lang.String getThreadId()
public void setThreadId(java.lang.String id)
id
- The thread id.public java.lang.String getParentId()
public void setParentId(java.lang.String parentid)
parentid
- The parentid to set.public java.lang.String getActivity()
public void setActivity(java.lang.String activity)
activity
- The activity.public java.lang.String getActId()
public void setActId(java.lang.String actid)
actid
- The actid to set.public java.lang.String getPool()
public void setPool(java.lang.String pool)
pool
- The pool.public java.lang.String getLane()
public void setLane(java.lang.String lane)
lane
- The lane.public java.lang.String getException()
public void setException(java.lang.String exception)
exception
- The exception.public boolean isWaiting()
public void setWaiting(boolean waiting)
waiting
- The waiting flag.public java.lang.String getData()
public void getData(java.lang.String data)
data
- The data.public java.lang.String getEdges()
public void setEdges(java.lang.String edges)
edges
- The edges to set.public java.lang.String toString()
toString
in class java.lang.Object
public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
public int hashCode()
hashCode
in class java.lang.Object