Class UpdateServiceKeySubscriptionTask


  • public class UpdateServiceKeySubscriptionTask
    extends SISSubTask
    Update an existing service key subscription in a SIS-IN RA entity. The SIS-IN RA entity to manage to is specified by the enclosing sis-in-management element. The subscription to change is specified by the name attribute. Any value specified for any other attribute or nested element replaces that currently in the subscription. The values of any subscription properties for which task attributes or elements are not specified are left unchanged. Changes to the originating, terminating, or third-party composition for the subscription are specified in nested elements. For example:
     <sis-in-management raentity="foo">
       <updateservicekeysubscription name="CallForwarding" debuglevel="2">
         <originatingcomposition name="OriginatingComposition" vendor="xyz.com" version="1.0"/>
       </updateservicekeysubscription>
     </sis-in-management>
     
    This task invokes the ServiceKeySubscriptionManagementMBean.updateSubscription(com.opencloud.slee.resources.insis.management.ServiceKeySubscription) management operation.

    Ant Parameters

    Attribute Description Required
    name The name of the service key subscription. Must be unique within the SIS-IN RA entity. Yes.
    service key The service key of the subscription. Must be unique within the SIS-IN RA entity. No.
    description An arbitrary description for the subscription. No.
    debuglevel The fine-grained tracing debug level of the subscription. Must be a value between 0 and 3. No.
    audit A boolean value that specifies whether the SIS will generate audit logs for calls that select this subscription. No. Defaults to false (no audit logging).
    failonerror Default failure case behaviour for this task. If set to 'false' or 'no', the build will continue when this task attempts a redundant action. No. Default is inherited from the enclosing INSISManagementTask.

    Parameters specified as nested elements

    Element Description
    originatingcomposition Contains the composition component ID for originating triggers that select this subscription. At most one nested composition element of this type may be present.
    terminatingcomposition Contains the composition component ID for terminating triggers that select this subscription. At most one nested composition element of this type may be present.
    thirdpartycomposition Contains the composition component ID for third-party call triggers that select this subscription. At most one nested composition element of this type may be present.
    • Constructor Detail

      • UpdateServiceKeySubscriptionTask

        public UpdateServiceKeySubscriptionTask()
    • Method Detail

      • setName

        public void setName​(String name)
      • setServiceKey

        public void setServiceKey​(int serviceKey)
      • setDescription

        public void setDescription​(String description)
      • setDebugLevel

        public void setDebugLevel​(int debugLevel)
      • setAudit

        public void setAudit​(boolean audit)