Package org.jeyzer.mx
Interface JzrThreadInfo
-
public interface JzrThreadInfoJzrThreadInfo 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 StringgetActionId()Get the Jeyzer internal action idMap<String,String>getContextParams()Get the context parameters associated to the current action.StringgetFunctionPrincipal()Get the function principal associated to the current action.StringgetId()Get the applicative action id.longgetStartTime()Get the action start timelonggetThreadId()Get the unique thread idStringgetUser()Get the user id associated to the current action.
-
-
-
Method Detail
-
getActionId
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
String getId()
Get the applicative action id. Optional- Returns:
- the applicative action id
-
getUser
String getUser()
Get the user id associated to the current action. Optional- Returns:
- the user id
-
getFunctionPrincipal
String getFunctionPrincipal()
Get the function principal associated to the current action. Optional- Returns:
- the function principal
-
-