Interface INTriggerAddressTracingManagementMBean
-
- All Superinterfaces:
TriggerAddressTracingManagementMBean
public interface INTriggerAddressTracingManagementMBean extends TriggerAddressTracingManagementMBean
TheINTriggerAddressTracingManagementMBean
provides additional IN-specific management operations for SIS trigger address tracing configurations in a SIS RA entity.
-
-
Field Summary
-
Fields inherited from interface com.opencloud.slee.resources.sis.management.TriggerAddressTracingManagementMBean
SIS_MANAGEMENT_TYPE
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description INTriggerAddressTracingSelector[]
getSelectors(TriggerType triggerType)
Get the trigger address tracing selectors for the SIS RA entity.void
setSelectors(TriggerType triggerType, INTriggerAddressTracingSelector[] selectors)
Set the trigger address tracing selectors for the SIS RA entity.-
Methods inherited from interface com.opencloud.slee.resources.sis.management.TriggerAddressTracingManagementMBean
getDebugLevel, getTriggerAddressTracingProfileTableName, isAuditLoggingEnabled, setAuditLoggingEnabled, setDebugLevel, setTriggerAddressTracingProfileTableName
-
-
-
-
Method Detail
-
getSelectors
INTriggerAddressTracingSelector[] getSelectors(TriggerType triggerType) throws NullPointerException, ManagementException
Get the trigger address tracing selectors for the SIS RA entity.- Parameters:
triggerType
- the type of trigger to get the selectors for.- Returns:
- the selectors for the specified trigger type.
- Throws:
NullPointerException
- iftriggerType
isnull
.ManagementException
- if an error occurs communicating with the management server.- Since:
- SIS 2.2.1
- See Also:
setSelectors(com.opencloud.slee.resources.sis.management.TriggerType, com.opencloud.slee.resources.insis.management.INTriggerAddressTracingSelector[])
-
setSelectors
void setSelectors(TriggerType triggerType, INTriggerAddressTracingSelector[] selectors) throws NullPointerException, ManagementException
Set the trigger address tracing selectors for the SIS RA entity. These identify the initial event parameters which will be examined iffine-grained tracing
is enabled. For each selector, the debug level of the address in the selected parameter (if present) is obtained from the trigger address tracing profile table. The highest debug level found is used.- Parameters:
triggerType
- the type of trigger to set the selectors for.selectors
- the selectors. May benull
.- Throws:
NullPointerException
- iftriggerType
isnull
.ManagementException
- if an error occurs communicating with the management server.- Since:
- SIS 2.2.1
- See Also:
getSelectors(com.opencloud.slee.resources.sis.management.TriggerType)
-
-