Containerization feature of SO
[so.git] / adapters / mso-vfc-adapter / src / main / java / org / onap / so / adapters / vfc / application / JerseyConfiguration.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
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  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.so.adapters.vfc.application;
22
23 import javax.annotation.PostConstruct;
24 import javax.ws.rs.ApplicationPath;
25
26 import org.glassfish.jersey.server.ResourceConfig;
27 import org.onap.so.adapters.vfc.HealthCheckHandler;
28 import org.onap.so.adapters.vfc.VfcAdapterRest;
29 import org.springframework.context.annotation.Configuration;
30
31 import io.swagger.jaxrs.config.BeanConfig;
32 import io.swagger.jaxrs.listing.ApiListingResource;
33 import io.swagger.jaxrs.listing.SwaggerSerializers;
34
35 @Configuration
36 @ApplicationPath("/vfc")
37 public class JerseyConfiguration extends ResourceConfig {
38
39         public JerseyConfiguration() {
40
41         }
42
43         @PostConstruct
44         public void setUp() {
45                 register(VfcAdapterRest.class);
46                 register(HealthCheckHandler.class);
47
48                 this.register(ApiListingResource.class);
49                 this.register(SwaggerSerializers.class);
50
51                 BeanConfig beanConfig = new BeanConfig();
52                 beanConfig.setVersion("1.0.2");
53                 beanConfig.setSchemes(new String[] { "http" });
54                 beanConfig.setHost("localhost:8080");
55                 beanConfig.setBasePath("/");
56                 beanConfig.setResourcePackage("org.onap.so.adapters.vfc.application");
57                 beanConfig.setPrettyPrint(true);
58                 beanConfig.setScan(true);
59         }
60 }