instantiate and terminate servce
[usecase-ui/server.git] / src / main / java / org / onap / usecaseui / server / security / RestfulSecurityConfig.java
1 /*
2  * Copyright (C) 2017 CMCC, Inc. and others. All rights reserved.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.onap.usecaseui.server.security;
17
18 import org.springframework.context.annotation.Bean;
19 import org.springframework.context.annotation.Configuration;
20 import org.springframework.security.authentication.AuthenticationManager;
21 import org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder;
22 import org.springframework.security.config.annotation.method.configuration.EnableGlobalMethodSecurity;
23 import org.springframework.security.config.annotation.web.builders.HttpSecurity;
24 import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity;
25 import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
26
27
28 //@Configuration
29 //@EnableWebSecurity
30 public class RestfulSecurityConfig extends WebSecurityConfigurerAdapter
31 {
32     @Override
33     protected void configure(HttpSecurity http)
34         throws Exception
35     {
36         // TODO Auto-generated method stub
37         super.configure(http);
38     }
39     
40     @Override
41     protected void configure(AuthenticationManagerBuilder auth)
42         throws Exception
43     {
44         // TODO Auto-generated method stub
45         super.configure(auth);
46     }
47     
48     @Override
49     @Bean
50     public AuthenticationManager authenticationManagerBean() throws Exception {
51         return super.authenticationManagerBean();
52     }
53 }