diff options
Diffstat (limited to 'cmso-service/src/main/java')
-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 |