Simplify script compilation implementation.
[ccsdk/cds.git] / ms / blueprintsprocessor / application / src / main / java / org / onap / ccsdk / cds / blueprintsprocessor / SwaggerConfig.java
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 import java.util.Collections;
31
32 /**
33  * SwaggerConfig
34  *
35  * @author Brinda Santh 8/13/2018
36  */
37 @Configuration
38 //@EnableSwagger2WebFlux
39 public class SwaggerConfig {
40
41     @Bean
42     public Docket api() {
43         return new Docket(DocumentationType.SWAGGER_2)
44             .select()
45             .apis(RequestHandlerSelectors.withClassAnnotation(Api.class))
46             .paths(PathSelectors.any())
47             .build()
48             .apiInfo(apiInfo());
49     }
50
51     private ApiInfo apiInfo() {
52         return new ApiInfo(
53             "CDS Blueprints Processor APIs",
54             "Provide APIs to interact with CBA, their resolved resources and templates, and stored resource configurations.",
55             "0.5.1",
56             null,
57             new Contact("CCSDK Team", "www.onap.org", "onap-discuss@lists.onap.org"),
58             "Apache 2.0",
59             "http://www.apache.org/licenses/LICENSE-2.0",
60             Collections.emptyList());
61     }
62 }