a8ee57d9d10b18828088be6248b675ae3ad0a8fd
[ccsdk/cds.git] / ms / blueprintsprocessor / application / src / main / kotlin / org / onap / ccsdk / cds / blueprintsprocessor / SwaggerConfig.kt
1 /*
2  *  Copyright © 2017-2018 AT&T Intellectual Property.
3  *  Modifications Copyright © 2018 IBM.
4  *
5  *  Licensed under the Apache License, Version 2.0 (the "License");
6  *  you may not use this file except in compliance with the License.
7  *  You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  *  Unless required by applicable law or agreed to in writing, software
12  *  distributed under the License is distributed on an "AS IS" BASIS,
13  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  *  See the License for the specific language governing permissions and
15  *  limitations under the License.
16  */
17
18 package org.onap.ccsdk.cds.blueprintsprocessor
19
20 import io.swagger.annotations.Api
21 import org.springframework.context.annotation.Bean
22 import org.springframework.context.annotation.Configuration
23 import springfox.documentation.builders.PathSelectors
24 import springfox.documentation.builders.RequestHandlerSelectors
25 import springfox.documentation.service.ApiInfo
26 import springfox.documentation.service.Contact
27 import springfox.documentation.spi.DocumentationType
28 import springfox.documentation.spring.web.plugins.Docket
29
30 /**
31  * SwaggerConfig
32  *
33  * @author Brinda Santh
34  */
35 @Configuration
36 //@EnableSwagger2WebFlux
37 open class SwaggerConfig {
38
39     @Bean
40     open fun api(): Docket {
41         return Docket(DocumentationType.SWAGGER_2)
42                 .select()
43                 .apis(RequestHandlerSelectors.withClassAnnotation(Api::class.java))
44                 .paths(PathSelectors.any())
45                 .build()
46                 .apiInfo(apiInfo())
47     }
48
49     private fun apiInfo(): ApiInfo {
50         return ApiInfo(
51                 "CDS Blueprints Processor APIs",
52                 "Provide APIs to interact with CBA, their resolved resources and templates, and stored resource configurations.",
53                 "0.7.0",
54                 null,
55                 Contact("CCSDK Team", "www.onap.org", "onap-discuss@lists.onap.org"),
56                 "Apache 2.0",
57                 "http://www.apache.org/licenses/LICENSE-2.0",
58                 emptyList())
59     }
60 }