* [ 1666919 ] Transaction handling different for local and remote process

This commit is contained in:
Heng Sin Low 2007-02-23 09:42:40 +00:00
parent e82eded16c
commit ff08460d7b
1 changed files with 20 additions and 0 deletions

View File

@ -102,6 +102,9 @@ public class ProcessInfo implements Serializable
/** Log Info */
private ProcessInfoParameter[] m_parameter = null;
/** Transaction Name */
private String m_transactionName = null;
/**
@ -581,5 +584,22 @@ public class ProcessInfo implements Serializable
{
m_logs = logs;
}
/**
* Get transaction name for this process
* @return String
*/
public String getTransactionName()
{
return m_transactionName;
}
/**
* Set transaction name from this process
* @param trxName
*/
public void setTransactionName(String trxName)
{
m_transactionName = trxName;
}
} // ProcessInfo