diff options
author | Marcus G K Williams <marcus.williams@intel.com> | 2018-11-01 14:35:21 -0700 |
---|---|---|
committer | Marcus G K Williams <marcus.williams@intel.com> | 2018-11-01 14:35:32 -0700 |
commit | 5dadc2c5790c961a74085d3d10b6f5aec6b7ba30 (patch) | |
tree | 22d5e64459a5b4bd35fc4e328592fe0119be4f6f /bpmn/MSOCoreBPMN/src/main | |
parent | f6f78668938bcfb66bc4fd6a977a1641815db58e (diff) |
Fix msb url in homing cloudsite
This change adds a getMsbHost method
to homingUtils to enable correct configuration
of the msburl used in identity_services for
multicloud.
Issue-ID: SO-1180
Change-Id: Ib7adecda98b1d5f5770e2d17a2e76c970619ab46
Signed-off-by: Marcus G K Williams <marcus.williams@intel.com>
Diffstat (limited to 'bpmn/MSOCoreBPMN/src/main')
-rw-r--r-- | bpmn/MSOCoreBPMN/src/main/java/org/onap/so/bpmn/core/UrnPropertiesReader.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bpmn/MSOCoreBPMN/src/main/java/org/onap/so/bpmn/core/UrnPropertiesReader.java b/bpmn/MSOCoreBPMN/src/main/java/org/onap/so/bpmn/core/UrnPropertiesReader.java index 968c8c1590..750cd241e8 100644 --- a/bpmn/MSOCoreBPMN/src/main/java/org/onap/so/bpmn/core/UrnPropertiesReader.java +++ b/bpmn/MSOCoreBPMN/src/main/java/org/onap/so/bpmn/core/UrnPropertiesReader.java @@ -69,6 +69,10 @@ public class UrnPropertiesReader { return variableValue; } + public static String getVariable(String variableName, DelegateExecution execution, String defaultValue) { + return Optional.ofNullable(getVariable(variableName, execution)).orElse(defaultValue); + } + /** * Return the URN property value from the environment object * @param variableName URN property name |