b43447f5c4b284423ae5f7adb14b4a5b87d4cc86
[so.git] /
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 import org.glassfish.jersey.server.ResourceConfig;
26 import org.onap.so.adapters.catalogdb.rest.CatalogDbAdapterRest;
27 import org.onap.so.adapters.catalogdb.rest.ServiceRestImpl;
28 import org.onap.so.adapters.catalogdb.rest.VnfRestImpl;
29 import org.onap.so.logging.jaxrs.filter.JaxRsFilterLogging;
30 import org.springframework.context.annotation.Configuration;
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         register(ServiceRestImpl.class);
46         register(VnfRestImpl.class);
47         BeanConfig beanConfig = new BeanConfig();
48         beanConfig.setVersion("1.0.2");
49         beanConfig.setSchemes(new String[] {"https"});
50         beanConfig.setBasePath("/ecomp/mso/catalog");
51         beanConfig.setResourcePackage("org.onap.so.adapters.catalogdb.rest");
52         beanConfig.setPrettyPrint(true);
53         beanConfig.setScan(true);
54     }
55 }
56