diff options
author | PatrikBuhr <patrik.buhr@est.tech> | 2021-03-26 12:19:42 +0100 |
---|---|---|
committer | PatrikBuhr <patrik.buhr@est.tech> | 2021-03-26 12:21:13 +0100 |
commit | ac6773591fcfc1e0d5f23038b3c37e9612ca9a9e (patch) | |
tree | d091811b4d31502b0c29376c3f85d6ca388d6b51 /a1-policy-management/src/main/java/org | |
parent | 7a052f6652ffc9965f3c0d2cdc8b7385d1029f3f (diff) |
Ingnoring RIC faulty configuration entries
Ignoring RIC figuration entries where the baseUrl is empty.
Change-Id: I50e63c964375d009a927290ab1ba0895a7f8888c
Issue-ID: CCSDK-3227
Signed-off-by: PatrikBuhr <patrik.buhr@est.tech>
Diffstat (limited to 'a1-policy-management/src/main/java/org')
-rw-r--r-- | a1-policy-management/src/main/java/org/onap/ccsdk/oran/a1policymanagementservice/configuration/ApplicationConfigParser.java | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/a1-policy-management/src/main/java/org/onap/ccsdk/oran/a1policymanagementservice/configuration/ApplicationConfigParser.java b/a1-policy-management/src/main/java/org/onap/ccsdk/oran/a1policymanagementservice/configuration/ApplicationConfigParser.java index bc1f62a4..a6af2023 100644 --- a/a1-policy-management/src/main/java/org/onap/ccsdk/oran/a1policymanagementservice/configuration/ApplicationConfigParser.java +++ b/a1-policy-management/src/main/java/org/onap/ccsdk/oran/a1policymanagementservice/configuration/ApplicationConfigParser.java @@ -39,11 +39,14 @@ import javax.validation.constraints.NotNull; import org.immutables.gson.Gson; import org.immutables.value.Value; import org.onap.ccsdk.oran.a1policymanagementservice.exceptions.ServiceException; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; /** * Parser for the Json representing of the component configuration. */ public class ApplicationConfigParser { + private static final Logger logger = LoggerFactory.getLogger(ApplicationConfigParser.class); private static final String CONFIG = "config"; private static final String CONTROLLER = "controller"; @@ -109,7 +112,6 @@ public class ApplicationConfigParser { throw new ServiceException( "Configuration error, controller configuration not found: " + ric.controllerName()); } - } } @@ -124,7 +126,11 @@ public class ApplicationConfigParser { .managedElementIds(parseManagedElementIds(get(ricAsJson, "managedElementIds").getAsJsonArray())) // .controllerName(controllerNameElement != null ? controllerNameElement.getAsString() : "") // .build(); - result.add(ricConfig); + if (!ricConfig.baseUrl().isEmpty()) { + result.add(ricConfig); + } else { + logger.error("RIC configuration error {}, baseUrl is empty", ricConfig.ricId()); + } } return result; } |