Migrate ccsdk/apps to ccsdk/cds
[ccsdk/cds.git] / ms / controllerblueprints / application / src / main / java / org / onap / ccsdk / cds / controllerblueprints / WebConfig.java
1 /*
2  *  Copyright © 2017-2018 AT&T Intellectual Property.
3  *  Modifications Copyright © 2018 IBM.
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
17 package org.onap.ccsdk.cds.controllerblueprints;
18
19 import org.springframework.context.annotation.Configuration;
20 import org.springframework.web.reactive.config.CorsRegistry;
21 import org.springframework.web.reactive.config.ResourceHandlerRegistry;
22 import org.springframework.web.reactive.config.WebFluxConfigurationSupport;
23
24 /**
25  * WebConfig
26  *
27  * @author Brinda Santh 8/13/2018
28  */
29 @Configuration
30 @SuppressWarnings("unused")
31 public class WebConfig extends WebFluxConfigurationSupport {
32         @Override
33     public void addResourceHandlers(ResourceHandlerRegistry registry) {
34         registry.addResourceHandler("swagger-ui.html")
35                 .addResourceLocations("classpath:/META-INF/resources/");
36
37         registry.addResourceHandler("/webjars/**")
38                 .addResourceLocations("classpath:/META-INF/resources/webjars/");
39
40     }
41
42     @Override
43     public void addCorsMappings(CorsRegistry corsRegistry) {
44         corsRegistry.addMapping("/**")
45                 .allowedOrigins("*")
46                 .allowedMethods("*")
47                 .allowedHeaders("DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range")
48                 .maxAge(3600);
49     }
50 }