Migrate ccsdk/apps to ccsdk/cds
[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
21 import org.springframework.context.annotation.Bean;
22 import springfox.documentation.builders.PathSelectors;
23 import springfox.documentation.builders.RequestHandlerSelectors;
24 import springfox.documentation.service.ApiInfo;
25 import springfox.documentation.service.Contact;
26 import springfox.documentation.spi.DocumentationType;
27 import springfox.documentation.spring.web.plugins.Docket;
28
29 import java.util.Collections;
30
31 /**
32  * SwaggerConfig
33  *
34  * @author Brinda Santh 8/13/2018
35  */
36 //@Configuration
37 //@EnableSwagger2
38 @SuppressWarnings("unused")
39 @Deprecated
40 public class SwaggerConfig {
41
42     @Bean
43     public Docket api() {
44         return new Docket(DocumentationType.SWAGGER_2)
45                 .select()
46                 .apis(RequestHandlerSelectors.any())
47                 .paths(PathSelectors.any())
48                 .build()
49                 .apiInfo(apiInfo());
50     }
51
52     private ApiInfo apiInfo() {
53         return new ApiInfo(
54                 "Blueprints Processor API",
55                 "Controller blueprints processor API for VNF Selfservice.",
56                 "1.0.0",
57                 "Terms of service",
58                 new Contact("Brinda Santh", "www.onap.com", "bs2796@onap.com"),
59                 "Apache 2.0", "http://www.apache.org/licenses/LICENSE-2.0", Collections.emptyList());
60     }
61
62
63 }