2 * ============LICENSE_START=======================================================
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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=========================================================
21 package org.onap.so.adapters.catalogdb;
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;
38 @ApplicationPath("/ecomp/mso/catalog")
39 public class JerseyConfiguration extends ResourceConfig {
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);