Package com.orchestranetworks.addon.dqid.service

Provides APIs to execute the {addon.label} services.

Initializes the ServiceSpec to create a service spec.

        ServiceSpec serviceSpec = new ServiceSpec();

Uses DQIDServiceFactory to get the service and calls the execute method.

To run the Purge indicators service:

Initializes the PurgeIndicatorSpec to create a spec to purge indicators.

        PurgeIndicatorSpec serviceSpec = new PurgeIndicatorSpec();

Uses DQIDServiceFactory to get the service and calls the execute method.

        PurgeIndicatorResult result = (PurgeIndicatorResult) DQIDServiceFactory.getService(ServiceType.PURGE_INDICATORS).execute(serviceSpec);

The execution result can be retrieved in PurgeIndicatorResult.