diff options
author | Liang Ding <liang.ding@intel.com> | 2019-03-24 21:40:51 -0700 |
---|---|---|
committer | Ofir Sonsino <ofir.sonsino@intl.att.com> | 2019-03-25 10:49:01 +0000 |
commit | 53903f1d96affe2c21e3ffbdd45aea8f7af0714d (patch) | |
tree | c20ac44bf271923c4e76fd3177816a779c521d2e /catalog-be/src | |
parent | 804ec686128a49628e9f656397e4a4512e4c5714 (diff) |
fix a typo
retrive -- > retrieve
Change-Id: Ic6bce5b991c042cc2d19f1f72dd827644111b105
Issue-ID: SDC-2207
Signed-off-by: Liang Ding <liang.ding@intel.com>
Diffstat (limited to 'catalog-be/src')
3 files changed, 3 insertions, 3 deletions
diff --git a/catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/ResourceBusinessLogic.java b/catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/ResourceBusinessLogic.java index 82f7c32524..e99d65eda0 100644 --- a/catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/ResourceBusinessLogic.java +++ b/catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/ResourceBusinessLogic.java @@ -4560,7 +4560,7 @@ public class ResourceBusinessLogic extends ComponentBusinessLogic { Either<List<CategoryDefinition>, ActionStatus> categories = elementDao .getAllCategories(NodeTypeEnum.ResourceNewCategory, inTransaction); if (categories.isRight()) { - log.debug("failed to retrive resource categories from Titan"); + log.debug("failed to retrieve resource categories from Titan"); responseFormat = componentsUtils.getResponseFormat(categories.right().value()); componentsUtils.auditResource(responseFormat, user, resource, actionEnum); throw new ComponentException(categories.right().value()); diff --git a/catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/ServiceBusinessLogic.java b/catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/ServiceBusinessLogic.java index 65b1f12c03..6c0e0c9fba 100644 --- a/catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/ServiceBusinessLogic.java +++ b/catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/ServiceBusinessLogic.java @@ -1531,7 +1531,7 @@ public class ServiceBusinessLogic extends ComponentBusinessLogic { log.debug("validating service category {} against valid categories list", list); Either<List<CategoryDefinition>, ActionStatus> categorys = elementDao.getAllServiceCategories(); if (categorys.isRight()) { - log.debug("failed to retrive service categories from Titan"); + log.debug("failed to retrieve service categories from Titan"); ResponseFormat responseFormat = componentsUtils.getResponseFormat(categorys.right().value()); return Either.right(responseFormat); } diff --git a/catalog-be/src/main/java/org/openecomp/sdc/be/monitoring/EsGateway.java b/catalog-be/src/main/java/org/openecomp/sdc/be/monitoring/EsGateway.java index fed36b5653..bfda04e4e7 100644 --- a/catalog-be/src/main/java/org/openecomp/sdc/be/monitoring/EsGateway.java +++ b/catalog-be/src/main/java/org/openecomp/sdc/be/monitoring/EsGateway.java @@ -50,7 +50,7 @@ public class EsGateway extends ProxyServlet { String esPort = null; MonitoringBusinessLogic monitoringBL = getMonitoringBL(request.getSession().getServletContext()); if (monitoringBL == null) { - log.error("failed to retrive monitoringBL."); + log.error("failed to retrieve monitoringBL."); } else { esHost = monitoringBL.getEsHost(); esPort = monitoringBL.getEsPort(); |