Repair widget-ms problem; adjust sonar in poms
[portal.git] / ecomp-portal-BE-os / src / main / java / org / openecomp / portalapp / portal / service / UserRolesServiceImpl.java
index c38fc6a..41b320c 100644 (file)
@@ -37,7 +37,6 @@
  */
 package org.openecomp.portalapp.portal.service;
 
-import java.util.ArrayList;
 import java.util.List;
 
 import org.apache.cxf.transport.http.HTTPException;
@@ -46,8 +45,6 @@ import org.openecomp.portalapp.portal.domain.EPRole;
 import org.openecomp.portalapp.portal.domain.EPUser;
 import org.openecomp.portalapp.portal.domain.EPUserApp;
 import org.openecomp.portalapp.portal.logging.aop.EPMetricsLog;
-import org.openecomp.portalapp.portal.transport.RemoteUserWithRoles;
-import org.openecomp.portalapp.portal.transport.UserApplicationRoles;
 import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate;
 import org.openecomp.portalsdk.core.service.DataAccessService;
 import org.springframework.beans.factory.annotation.Autowired;
@@ -69,9 +66,7 @@ public class UserRolesServiceImpl extends UserRolesCommonServiceImpl implements
 
        @Autowired
        private DataAccessService dataAccessService;
-       @Autowired
-       private ApplicationsRestClientService applicationsRestClientService;
-
+       
        private EPUser getUserFromRemoteApp(String orgUserId, EPApp app,
                        ApplicationsRestClientService applicationsRestClientService) throws HTTPException {
                EPUser user = applicationsRestClientService.get(EPUser.class, app.getId(),
@@ -100,25 +95,6 @@ public class UserRolesServiceImpl extends UserRolesCommonServiceImpl implements
                applicationsRestClientService.post(EPUser.class, app.getId(), userAsString, String.format("/user", orgUserId));
        }
 
-       @Override
-       public List<UserApplicationRoles> getUsersFromAppEndpoint(Long appId) throws HTTPException {
-               RemoteUserWithRoles[] remoteUsers = applicationsRestClientService.get(RemoteUserWithRoles[].class, appId,
-                               "/users");
-               ArrayList<UserApplicationRoles> userApplicationRoles = new ArrayList<UserApplicationRoles>();
-               for (RemoteUserWithRoles remoteUser : remoteUsers) {
-                       UserApplicationRoles userWithRemoteAppRoles = convertToUserApplicationRoles(appId, remoteUser);
-                       if (userWithRemoteAppRoles.getRoles() != null && userWithRemoteAppRoles.getRoles().size() > 0) {
-                               userApplicationRoles.add(userWithRemoteAppRoles);
-                       } else {
-                               logger.debug(EELFLoggerDelegate.debugLogger, "User " + userWithRemoteAppRoles.getOrgUserId()
-                                               + " doesn't have any roles assigned to any app.");
-
-                       }
-               }
-
-               return userApplicationRoles;
-       }
-
        public static void persistExternalRoleInEcompDb(EPRole externalAppRole, Long appId, EPRoleService roleService) {
                externalAppRole.setAppId(appId);
                externalAppRole.setAppRoleId(externalAppRole.getId());