Methods Summary |
---|
public void | clearData()
final Agent callflowAgent = Switch.getSwitch().getCallFlowAgent();
callflowAgent.clearData();
|
public boolean | deleteRequestIDs(java.lang.String[] requestId)
final Agent callflowAgent = Switch.getSwitch().getCallFlowAgent();
return callflowAgent.deleteRequestIds(requestId);
|
public java.lang.String | getCallerIPFilter()
Agent callflowAgent = Switch.getSwitch().getCallFlowAgent();
return callflowAgent.getCallerIPFilter();
|
public java.lang.String | getCallerPrincipalFilter()
Agent callflowAgent = Switch.getSwitch().getCallFlowAgent();
return callflowAgent.getCallerPrincipalFilter();
|
public boolean | getEnabled()
return mCallFlowEnabled;
|
public java.util.List | queryCallStackForRequest(java.lang.String rid)
Agent callflowAgent = Switch.getSwitch().getCallFlowAgent();
return callflowAgent.getCallStackForRequest (rid);
|
public java.lang.String[] | queryComponentTypeKeys()
String[] componentType =
{
CallFlowMonitor.BEAN_MANAGED_PERSISTENCE,
CallFlowMonitor.CONTAINER_MANAGED_PERSISTENCE,
CallFlowMonitor.MESSAGE_DRIVEN_BEAN,
CallFlowMonitor.SERVLET,
CallFlowMonitor.SERVLET_FILTER,
CallFlowMonitor.STATEFUL_SESSION_BEAN,
CallFlowMonitor.STATELESS_SESSION_BEAN
};
return componentType;
|
public java.lang.String[] | queryContainerTypeOrApplicationTypeKeys()
String[] containerType =
{
CallFlowMonitor.WEB_CONTAINER,
CallFlowMonitor.EJB_CONTAINER,
CallFlowMonitor.ORB,
CallFlowMonitor.WEB_APPLICATION,
CallFlowMonitor.EJB_APPLICATION,
CallFlowMonitor.OTHER
};
return containerType;
|
public java.util.Map | queryPieInformation(java.lang.String rid)
Agent callflowAgent = Switch.getSwitch().getCallFlowAgent();
return callflowAgent.getPieInformation(rid);
|
public java.util.List | queryRequestInformation()
Agent callflowAgent = Switch.getSwitch().getCallFlowAgent();
return callflowAgent.getRequestInformation ();
|
public java.lang.String[] | queryRequestTypeKeys()
String[] requestType =
{
CallFlowMonitor.REMOTE_ASYNC_MESSAGE,
CallFlowMonitor.REMOTE_EJB,
CallFlowMonitor.REMOTE_WEB,
CallFlowMonitor.REMOTE_WEB_SERVICE,
CallFlowMonitor.TIMER_EJB
};
return requestType;
|
public void | setCallerIPFilter(java.lang.String filter)
Agent callflowAgent = Switch.getSwitch().getCallFlowAgent();
callflowAgent.setCallerIPFilter(filter);
|
public void | setCallerPrincipalFilter(java.lang.String filter)
Agent callflowAgent = Switch.getSwitch().getCallFlowAgent();
callflowAgent.setCallerPrincipalFilter(filter);
|
public void | setEnabled(boolean enabled)
final Agent callflowAgent = Switch.getSwitch().getCallFlowAgent();
callflowAgent.setEnable(enabled);
mCallFlowEnabled = callflowAgent.isEnabled ();
|