From 3aec9d2ab7f373a12e052d5e2c1c59b2a19770dc Mon Sep 17 00:00:00 2001 From: st782s Date: Fri, 14 Jul 2017 14:19:22 -0400 Subject: [Portal 21] Role management This push includes continuation of the changes required to handle cetralized roles,user management Change-Id: I38e9dc946ff53ac61dd3b580c335f4ad52b372f7 Signed-off-by: st782s --- .../org/openecomp/portalsdk/core/service/AccessConfiguration.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'ecomp-sdk/epsdk-core/src/main/java/org/openecomp/portalsdk/core/service/AccessConfiguration.java') diff --git a/ecomp-sdk/epsdk-core/src/main/java/org/openecomp/portalsdk/core/service/AccessConfiguration.java b/ecomp-sdk/epsdk-core/src/main/java/org/openecomp/portalsdk/core/service/AccessConfiguration.java index ae6bd309..ee97bc93 100644 --- a/ecomp-sdk/epsdk-core/src/main/java/org/openecomp/portalsdk/core/service/AccessConfiguration.java +++ b/ecomp-sdk/epsdk-core/src/main/java/org/openecomp/portalsdk/core/service/AccessConfiguration.java @@ -58,8 +58,8 @@ public class AccessConfiguration { */ @Bean @Conditional(LocalAccessCondition.class) - public UserProfileService userProfileServiceImpl() { - return new UserProfileServiceImpl(); + public UserService userServiceImpl() { + return new UserServiceImpl(); } @@ -69,8 +69,8 @@ public class AccessConfiguration { */ @Bean @Conditional(CentralAccessCondition.class) - public UserProfileService userProfileServiceCentalizedImpl() { - return new UserProfileServiceCentalizedImpl(); + public UserService userServiceCentalizedImpl() { + return new UserServiceCentalizedImpl(); } -- cgit 1.2.3-korg