699347015b2748b8da67101f2775c5fbbb177163
[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.logging.filter.base.Constants;
27 import org.onap.logging.filter.base.ONAPComponents;
28 import org.onap.so.adapters.catalogdb.rest.CatalogDbAdapterRest;
29 import org.onap.so.adapters.catalogdb.rest.ServiceRestImpl;
30 import org.onap.so.adapters.catalogdb.rest.VnfRestImpl;
31 import org.onap.so.logging.jaxrs.filter.SOAuditLogContainerFilter;
32 import org.springframework.context.annotation.Configuration;
33 import io.swagger.jaxrs.config.BeanConfig;
34 import io.swagger.jaxrs.listing.ApiListingResource;
35 import io.swagger.jaxrs.listing.SwaggerSerializers;
36
37 @Configuration
38 @ApplicationPath("/ecomp/mso/catalog")
39 public class JerseyConfiguration extends ResourceConfig {
40
41     @PostConstruct
42     public void setUp() {
43         System.setProperty(Constants.Property.PARTNER_NAME, ONAPComponents.CATALOG_DB.toString());
44         register(CatalogDbAdapterRest.class);
45         register(ApiListingResource.class);
46         register(SwaggerSerializers.class);
47         register(SOAuditLogContainerFilter.class);
48         register(ServiceRestImpl.class);
49         register(VnfRestImpl.class);
50         BeanConfig beanConfig = new BeanConfig();
51         beanConfig.setVersion("1.0.2");
52         beanConfig.setSchemes(new String[] {"https"});
53         beanConfig.setBasePath("/ecomp/mso/catalog");
54         beanConfig.setResourcePackage("org.onap.so.adapters.catalogdb.rest");
55         beanConfig.setPrettyPrint(true);
56         beanConfig.setScan(true);
57     }
58 }
59