Package com.orchestranetworks.addon.dqid.service
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
.
-
ClassDescriptionThe factory for all {addon.label}'s service instances.Defines a service.Purge indicator service.Represents the result of a service execution.Defines the settings for a service execution.Defines all the services that are available in the API.