To
get or set the address selectors for trigger address tracing,
use the following sis-console commands, Ant task, or related MBean operations.
Console commands
getTriggerAddressTracingSelectors
Command  | 
gettriggeraddresstracingselectors <ra-entity> <trigger-type>
    Get the current configured initial event parameters selected for trigger
    address tracing examination. The trigger type is either 'originating',
    'terminating', or 'third_party'
 | 
|---|---|
Example  | 
To get the trigger address tracing selectors for originating triggers for the SIS instance named  $ ./sis-console gettriggeraddresstracingselectors sis originating The following selectors are currently configured: [CallingPartyNumber]  | 
setTriggerAddressTracingSelectors
Command  | 
settriggeraddresstracingselectors <ra-entity> <trigger-type> <selectors>
    Set the initial event parameters selected for trigger
    address tracing examination. The trigger type is either 'originating',
    'terminating', or 'third_party'. The selectors are a comma-separated
    list from the following possibilities: [CallingPartyNumber,
    CalledPartyNumber, CalledPartyBCDNumber, RedirectingPartyID,
    LocationNumber, OriginalCalledPartyID, AdditionalCallingPartyNumber,
    CallingPartyNumber, DestinationSubscriberNumber, SmscAddress, Request-URI,
    From, To, P-Asserted-Identity, P-Called-Party-ID, P-Served-User]
 | 
|---|---|
Example  | 
To set the trigger address tracing selectors for originating triggers for the SIS instance named  $ ./sis-console settriggeraddresstracingselectors sis originating CallingPartyNumber,RedirectingPartyID The following selectors have now been configured: [CallingPartyNumber, RedirectingPartyID] To remove all existing selectors for terminating triggers for the SIS instance named  $ ./sis-console settriggeraddresstracingselectors sis terminating "" The following selectors have now been configured: []  | 
Ant task
setTriggerAddressTracingSelectors
Task  | 
<settriggeraddresstracingselectors triggertype="...">
    <selector name="..."/>
    ...
</settriggeraddresstracingselectors>
 | 
|---|---|
Example  | 
<sis-management>
    <settriggeraddresstracingselectors triggertype="originating">
        <selector name="CalledPartyNumber"/>
        <selector name="RedirectingPartyID"/>
    </settriggeraddresstracingselectors>
</sis-management>
 | 
MBean operations
MBean  | 
|---|
getSelectors
Operation  | 
public TriggerAddressTracingSelector[] getSelectors(TriggerType triggerType)
    throws NullPointerException, ManagementException;
 | 
|---|
setSelectors
Operation  | 
public void setSelectors(TriggerType triggerType, TriggerAddressTracingSelector[] selectors)
    throws NullPointerException, ManagementException;
 | 
|---|
