X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=ecomp-portal-BE-os%2Fsrc%2Fmain%2Fjava%2Forg%2Fonap%2Fportalapp%2Fportal%2Fservice%2FUserRolesServiceImpl.java;h=2bfc9d687bc21b643bafeb9b35a009eaa0282e89;hb=24608a9e1450c409dc3870440d29e91cc3a26bb9;hp=c0d14f603261e521c6235d67db3455133f57b100;hpb=bdbb16ae428a064129dc9c50b9936d618edc87d3;p=portal.git diff --git a/ecomp-portal-BE-os/src/main/java/org/onap/portalapp/portal/service/UserRolesServiceImpl.java b/ecomp-portal-BE-os/src/main/java/org/onap/portalapp/portal/service/UserRolesServiceImpl.java index c0d14f60..2bfc9d68 100644 --- a/ecomp-portal-BE-os/src/main/java/org/onap/portalapp/portal/service/UserRolesServiceImpl.java +++ b/ecomp-portal-BE-os/src/main/java/org/onap/portalapp/portal/service/UserRolesServiceImpl.java @@ -33,7 +33,7 @@ * * ============LICENSE_END============================================ * - * ECOMP is a trademark and service mark of AT&T Intellectual Property. + * */ package org.onap.portalapp.portal.service; @@ -98,13 +98,13 @@ public class UserRolesServiceImpl extends UserRolesCommonServiceImpl implements public static void persistExternalRoleInEcompDb(EPRole externalAppRole, Long appId, EPRoleService roleService) { externalAppRole.setAppId(appId); externalAppRole.setAppRoleId(externalAppRole.getId()); - externalAppRole.setId(null); // We will persist a new role, with ecomp + externalAppRole.setId(null); // We will persist a new role, with onap // role id which will be different than // external app role id. roleService.saveRole(externalAppRole); logger.debug(EELFLoggerDelegate.debugLogger, - String.format("ECOMP persists role from app:%d, app roleId: %d, roleName: %s", appId, + String.format("ONAP persists role from app:%d, app roleId: %d, roleName: %s", appId, externalAppRole.getAppRoleId(), externalAppRole.getName())); }