Package com.orchestranetworks.addon.dqid
Interface LinkedRecordInformation
-
public interface LinkedRecordInformationRetrieves the rule that defines what kinds of records affecting an indicator result.- Since:
- 1.4.0
- See Also:
LinkedRecordDefinition,IndicatorDefinitionContext.getLinkedRecordInformation()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetOption(java.lang.String key)Returns the option for a certain key defined inLinkedRecordDefinition.addOption(ParameterDefinition).java.util.List<java.lang.String>getOptions(java.lang.String key)Returns the options for a certain key defined inLinkedRecordDefinition.addOption(ParameterDefinition).com.orchestranetworks.schema.PathgetReferencePath(java.lang.String optionValue)Returns the reference path for a specified option value defined inLinkedRecordDefinition.addReferencePath(String, Path).booleanisActive()Returnstrueif the linked record feature is activated.
-
-
-
Method Detail
-
isActive
boolean isActive()
Returnstrueif the linked record feature is activated.
-
getOptions
java.util.List<java.lang.String> getOptions(java.lang.String key)
Returns the options for a certain key defined inLinkedRecordDefinition.addOption(ParameterDefinition).Use this method when
ParameterDefinition.isList()returnstrue.
-
getOption
java.lang.String getOption(java.lang.String key)
Returns the option for a certain key defined inLinkedRecordDefinition.addOption(ParameterDefinition).Use this method when
ParameterDefinition.isList()returnsfalse.
-
getReferencePath
com.orchestranetworks.schema.Path getReferencePath(java.lang.String optionValue)
Returns the reference path for a specified option value defined inLinkedRecordDefinition.addReferencePath(String, Path).- Since:
- 1.5.2
-
-