Package | Description |
---|---|
com.orchestranetworks.addon.dqid |
Provides classes and interfaces to define, publish and execute indicators.
|
com.orchestranetworks.addon.dqid.common |
Provides common classes that are used by other classes such as exceptions and enumerations.
|
com.orchestranetworks.addon.dqid.dashboard |
Provides classes to operate with add-on's dashboard.
|
com.orchestranetworks.addon.dqid.service |
Provides APIs to execute the {addon.label} services.
|
Modifier and Type | Method and Description |
---|---|
List<DQIdException> |
IndicatorsExecutionResult.getExceptions()
Returns all exceptions thrown during an indicator execution.
|
Modifier and Type | Method and Description |
---|---|
abstract IndicatorReport |
DECIndicator.execute(DECIndicatorExecutionContext executionContext)
Defines what the indicator will do.
|
abstract IndicatorReport |
WorkflowIndicator.execute(WorkflowIndicatorExecutionContext executionContext)
Defines what the indicator will do.
|
com.onwbp.adaptation.RequestResult |
ReportingUtilities.getFlatDataResult(com.orchestranetworks.instance.HomeKey storageHomeKey,
com.onwbp.adaptation.AdaptationName storageDatasetName,
String predicate)
Returns the request result from the
Flat data report table by specifying a predicate. |
com.onwbp.adaptation.PrimaryKey |
Indicator.getPrimaryKeyOrNullOfExistingIndicatorReportInBigDataTable(IndicatorExecutionContext executionContext,
int sequence)
Deprecated.
Since v2.0.0, use
FlatDataAccessor.getPrimaryKeyOrNullOfLatestRecord(IndicatorExecutionContext, int) instead. |
Map<Integer,com.onwbp.adaptation.PrimaryKey> |
Indicator.getPrimaryKeysOfExistingIndicatorValueParts(com.onwbp.adaptation.PrimaryKey indicatorReportPK,
IndicatorReport indicatorReport,
int sequence)
Deprecated.
Since v2.0.0, use
IndicatorReportAccessor.getPrimaryKeysOfLatestIndicatorValues(PrimaryKey, IndicatorReport, int) instead. |
Map<Integer,com.onwbp.adaptation.PrimaryKey> |
IndicatorReportAccessor.getPrimaryKeysOfLatestIndicatorValues(com.onwbp.adaptation.PrimaryKey indicatorReportPK,
IndicatorReport indicatorReport,
int sequence)
Returns the mapping between the order (
IndicatorValue.getOrder() ) and the latest corresponding records in the Indicator value table. |
com.onwbp.adaptation.RequestResult |
ReportingUtilities.getRelevantRecords(com.onwbp.adaptation.Adaptation reportingRecord)
Returns the
Linked record request result for a Big data report or Flat data record. |
com.onwbp.adaptation.RequestResult |
ReportingUtilities.getResultOfBigDataReport(com.orchestranetworks.instance.HomeKey storageHomeKey,
com.onwbp.adaptation.AdaptationName storageDatasetName,
String predicate)
Returns the request result from the
Big data report table by specifying a predicate. |
com.onwbp.adaptation.RequestResult |
ReportingUtilities.getResultOfIndicatorReport(com.orchestranetworks.instance.HomeKey storageHomeKey,
com.onwbp.adaptation.AdaptationName storageDatasetName,
String predicate)
Returns the request result from the
Indicator report table by specifying a predicate. |
com.onwbp.adaptation.RequestResult |
ReportingUtilities.getResultOfIndicatorValue(com.orchestranetworks.instance.HomeKey storageHomeKey,
com.onwbp.adaptation.AdaptationName storageDatasetName,
String predicate)
Returns the request result from the
Indicator value by specifying a predicate. |
static IndicatorStorage |
IndicatorStorageFactory.getStorage(com.orchestranetworks.instance.Repository repository,
com.orchestranetworks.instance.HomeKey homeKey,
com.onwbp.adaptation.AdaptationName adaptationName) |
Modifier and Type | Method and Description |
---|---|
static Date |
FormatDataPolicy.parseDate(DataTypeFormat dataTypeFormat,
String value)
Returns a date instance from a string value by specifying a
DataTypeFormat . |
static Date |
FormatDataPolicy.parseDate(com.orchestranetworks.schema.SchemaTypeName typeName,
String value)
Returns a date instance from a string value by specifying a schema type name.
|
static void |
FormatDataPolicy.validValueInRange(com.orchestranetworks.schema.SchemaTypeName typeName,
String min,
String max,
String value)
Validates a value against a range by specifying a schema type name.
|
Modifier and Type | Method and Description |
---|---|
void |
DashboardOperations.export(DashboardExportSpec exportSpec)
Transforms a dashboard to the PDF or the XML format.
|
static DashboardConfiguration |
DashboardConfiguration.getDashboardConfigForDefaultStorage(com.orchestranetworks.instance.Repository repository,
String dashboardCode)
Returns a
DashboardConfiguration instance for the default storage configured for the dashbhoard. |
static DashboardConfiguration |
DashboardConfiguration.getDashboardConfigForDefaultStorage(com.orchestranetworks.instance.Repository repository,
String dashboardCode,
String dashboardContextCode)
Deprecated.
Since 2.5.0, the dashboard context is no longer available. Use
DashboardConfiguration.getDashboardConfigForDefaultStorage(Repository, String) instead. |
static DashboardConfiguration |
DashboardConfiguration.getDashboardConfigForIntegrationStorage(com.orchestranetworks.instance.Repository repository,
String dashboardCode)
Returns a
DashboardConfiguration instance for integration storage. |
static DashboardConfiguration |
DashboardConfiguration.getDashboardConfigForIntegrationStorage(com.orchestranetworks.instance.Repository repository,
String dashboardCode,
String dashboardContextCode)
Deprecated.
Since 2.5.0, the dashboard context is no longer available. Use
DashboardConfiguration.getDashboardConfigForIntegrationStorage(Repository, String) instead. |
static DashboardConfiguration |
DashboardConfiguration.getDashboardConfigForProductionStorage(com.orchestranetworks.instance.Repository repository,
String dashboardCode)
Returns a
DashboardConfiguration instance for production storage. |
static DashboardConfiguration |
DashboardConfiguration.getDashboardConfigForProductionStorage(com.orchestranetworks.instance.Repository repository,
String dashboardCode,
String dashboardContextCode)
Deprecated.
Since 2.5.0, the dashboard context is no longer available. Use
DashboardConfiguration.getDashboardConfigForProductionStorage(Repository, String) instead. |
Modifier and Type | Method and Description |
---|---|
DQIdException |
ServiceResult.getException()
Returns the exception thrown if the service execution failed,
null otherwise. |