Merge "InvalidRoleException-junits"
[portal.git] / portal-BE / src / main / java / org / onap / portal / aop / service / FnUserServiceAOP.java
index 65fc88d..5cbec71 100644 (file)
@@ -47,7 +47,6 @@ import org.aspectj.lang.annotation.Aspect;
 import org.aspectj.lang.annotation.Before;
 import org.onap.portal.domain.db.fn.FnUser;
 import org.onap.portal.domain.mapper.FnUserMapper;
-import org.onap.portal.service.fn.FnUserService;
 import org.onap.portal.validation.DataValidator;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
@@ -69,7 +68,7 @@ public class FnUserServiceAOP {
               this.fnUserMapper = fnUserMapper;
        }
 
-       @Before("execution(* org.onap.portal.service.fn.FnUserService.saveFnUser(..)) && args(principal, fnUser)")
+       @Before("execution(* org.onap.portal.service.user.FnUserService.saveFnUser(..)) && args(principal, fnUser)")
        public void save(final Principal principal, final FnUser fnUser) {
               FnUser user;
               if (fnUser == null) {