Merge "Use the timeout from the heat template instead of"
[so.git] / common / src / main / java / org / onap / so / security / WebSecurityConfig.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 - 2018 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.so.security;
22
23 import java.util.ArrayList;
24 import java.util.List;
25 import javax.annotation.PostConstruct;
26 import org.springframework.boot.context.properties.ConfigurationProperties;
27 import org.springframework.context.annotation.Bean;
28 import org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder;
29 import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
30 import org.springframework.security.core.userdetails.UserDetailsService;
31 import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder;
32
33
34 @ConfigurationProperties(prefix = "spring.security")
35 public class WebSecurityConfig {
36
37     private List<UserCredentials> credentials;
38     private List<String> roles = new ArrayList<>();
39
40     public List<String> getRoles() {
41         return roles;
42     }
43
44     @PostConstruct
45     private void addRoles() {
46         if (credentials != null) {
47             for (int i = 0; i < credentials.size(); i++) {
48                 roles.add(credentials.get(i).getRole());
49             }
50         }
51     }
52
53     public List<UserCredentials> getUsercredentials() {
54         return credentials;
55     }
56
57     public void setUsercredentials(List<UserCredentials> usercredentials) {
58         this.credentials = usercredentials;
59     }
60
61     @Bean
62     public UserDetailsService userDetailsService() {
63         return new UserDetailsServiceImpl();
64     }
65
66     @Bean
67     public BCryptPasswordEncoder passwordEncoder() {
68         return new BCryptPasswordEncoder();
69     }
70 }