public interface ResolvableCalculationTarget extends CalculationTarget
This is implemented by targets that must be resolved against reference data at the start of the calculation process. For example, this allows the security on a trade or position to be resolved before deciding which function performs the processing.
| Modifier and Type | Method and Description |
|---|---|
CalculationTarget |
resolveTarget(ReferenceData refData)
Resolves this target, returning the resolved instance.
|
CalculationTarget resolveTarget(ReferenceData refData)
For example, if this represents a position where the security is referred to only by identifier, this method can be used to convert the position to an equivalent instance with the security looked up from reference data.
The resulting target is bound to data from reference data. If the data changes, the resulting target form will not be updated. Care must be taken when placing the resolved form in a cache or persistence layer.
refData - the reference data to use when resolvingReferenceDataNotFoundException - if an identifier cannot be resolved in the reference dataRuntimeException - if unable to resolve due to an invalid definitionCopyright 2009-Present by OpenGamma Inc. and individual contributors
Apache v2 licensed
Additional documentation can be found at strata.opengamma.io.