Package org.jeyzer.mx
Interface JzrThreadInfo
-
public interface JzrThreadInfo
JzrThreadInfo is a bean class holding the thread context info
When active, the Jeyzer Recorder will access this info to store it.
The action id, start time, thread id are always set. All other parameters are optional.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getActionId()
Get the Jeyzer internal action idjava.util.Map<java.lang.String,java.lang.String>
getContextParams()
Get the context parameters associated to the current action.java.lang.String
getFunctionPrincipal()
Get the function principal associated to the current action.java.lang.String
getId()
Get the applicative action id.long
getStartTime()
Get the action start timelong
getThreadId()
Get the unique thread idjava.lang.String
getUser()
Get the user id associated to the current action.
-
-
-
Method Detail
-
getActionId
java.lang.String getActionId()
Get the Jeyzer internal action id- Returns:
- the Jeyzer internal action id
-
getStartTime
long getStartTime()
Get the action start time- Returns:
- the action start time
-
getThreadId
long getThreadId()
Get the unique thread id- Returns:
- the thread id
-
getId
java.lang.String getId()
Get the applicative action id. Optional- Returns:
- the applicative action id
-
getUser
java.lang.String getUser()
Get the user id associated to the current action. Optional- Returns:
- the user id
-
getFunctionPrincipal
java.lang.String getFunctionPrincipal()
Get the function principal associated to the current action. Optional- Returns:
- the function principal
-
getContextParams
java.util.Map<java.lang.String,java.lang.String> getContextParams()
Get the context parameters associated to the current action. Optional- Returns:
- the context parameters
-
-