7d2c050306d223b8722d755352584295be5764a3
[portal.git] / ecomp-portal-BE-common / src / main / java / org / openecomp / portalapp / config / SwaggerConfig.java
1 /*-
2  * ================================================================================
3  * ECOMP Portal
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property
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  * ================================================================================
19  */
20 package org.openecomp.portalapp.config;
21
22 import org.springframework.context.annotation.Bean;
23 import org.springframework.context.annotation.Configuration;
24
25 import springfox.documentation.builders.ApiInfoBuilder;
26 import springfox.documentation.builders.PathSelectors;
27 import springfox.documentation.builders.RequestHandlerSelectors;
28 import springfox.documentation.service.ApiInfo;
29 import springfox.documentation.spi.DocumentationType;
30 import springfox.documentation.spring.web.plugins.Docket;
31 import springfox.documentation.swagger2.annotations.EnableSwagger2;
32
33 @Configuration
34 @EnableSwagger2
35 public class SwaggerConfig {
36
37     @Bean
38     public Docket api(){
39         return new Docket(DocumentationType.SWAGGER_2)
40             .select()
41             .apis(RequestHandlerSelectors.any())
42             .paths(PathSelectors.regex("/auxapi/.*"))
43             .build()
44             .apiInfo(apiInfo());
45     }
46
47     private ApiInfo apiInfo() {
48         return new ApiInfoBuilder()
49             .title("ECOMP Portal API Documentation")
50             .description("ECOMP Portal API Documentation")
51             .version("1.2.6")
52             .termsOfServiceUrl("http://terms-of-services.url")
53             .license("LICENSE")
54             .licenseUrl("http://url-to-license.com")
55             .build();
56     }
57
58 }