dcd668f2c8a192e4cc3df883b173c9b6e5edff26
[so.git] / adapters / mso-catalog-db-adapter / src / main / java / org / onap / so / adapters / catalogdb / 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.catalogdb;
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.catalogdb.rest.CatalogDbAdapterRest;
28 import org.onap.so.logging.jaxrs.filter.jersey.JaxRsFilterLogging;
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("/ecomp/mso/catalog")
37 public class JerseyConfiguration extends ResourceConfig {
38
39         @PostConstruct
40         public void setUp() {           
41                 register(CatalogDbAdapterRest.class);           
42                 register(ApiListingResource.class);
43                 register(SwaggerSerializers.class);
44                 register(JaxRsFilterLogging.class);
45                 BeanConfig beanConfig = new BeanConfig();
46                 beanConfig.setVersion("1.0.2");
47                 beanConfig.setSchemes(new String[]{"http"});
48                 beanConfig.setHost("localhost:8080");
49                 beanConfig.setBasePath("/ecomp/mso/catalog");
50                 beanConfig.setResourcePackage("org.onap.so.adapters.catalogdb");
51                 beanConfig.setPrettyPrint(true);
52                 beanConfig.setScan(true);               
53         }
54 }
55