diff options
author | Driptaroop Das <driptaroop.das@in.ibm.com> | 2019-01-16 15:47:39 +0530 |
---|---|---|
committer | Driptaroop Das <driptaroop.das@in.ibm.com> | 2019-01-16 15:47:47 +0530 |
commit | 6d39dbe35539e349e61545b786f728d9272a87f6 (patch) | |
tree | 017d615c393b95e866746bd778cf40d6269352f6 /cmso-service/src/main/java/org | |
parent | 332e53c1b55101674f366a8673541c076b0c9289 (diff) |
AuthProvider.java - sonar fixes
AuthProvider.java - sonar fixes
Issue-ID: OPTFRA-414
Change-Id: I6ae6b9ab960035a1a61f90b18ebdfd7de783bb64
Signed-off-by: Driptaroop Das <driptaroop.das@in.ibm.com>
Diffstat (limited to 'cmso-service/src/main/java/org')
-rw-r--r-- | cmso-service/src/main/java/org/onap/optf/cmso/AuthProvider.java | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/cmso-service/src/main/java/org/onap/optf/cmso/AuthProvider.java b/cmso-service/src/main/java/org/onap/optf/cmso/AuthProvider.java index e002b7d..0f497b7 100644 --- a/cmso-service/src/main/java/org/onap/optf/cmso/AuthProvider.java +++ b/cmso-service/src/main/java/org/onap/optf/cmso/AuthProvider.java @@ -1,6 +1,6 @@ /* * Copyright © 2018 AT&T Intellectual Property. - * Modifications Copyright © 2018 IBM. + * Modifications Copyright © 2019 IBM. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -30,16 +30,15 @@ */ package org.onap.optf.cmso; -import java.util.ArrayList; - import org.springframework.beans.factory.annotation.Autowired; import org.springframework.core.env.Environment; import org.springframework.security.authentication.AuthenticationProvider; import org.springframework.security.authentication.UsernamePasswordAuthenticationToken; import org.springframework.security.core.Authentication; -import org.springframework.security.core.AuthenticationException; import org.springframework.stereotype.Component; +import java.util.ArrayList; + @Component public class AuthProvider implements AuthenticationProvider { @@ -48,9 +47,7 @@ public class AuthProvider Environment env; @Override - public Authentication authenticate(Authentication authentication) - throws AuthenticationException { - org.springframework.security.web.authentication.www.BasicAuthenticationFilter f = null; + public Authentication authenticate(Authentication authentication) { String name = authentication.getName(); String password = authentication.getCredentials().toString(); //TODO check credentials until we enable AAF |