blob: 754b114aee0ac2fde7a779c4875e3b9ea4150711 [file] [log] [blame]
Aharoni, Pavel (pa0916)ca3cb012018-10-22 15:29:57 +03001/*-
2 * ============LICENSE_START=======================================================
3 * OSAM
4 * ================================================================================
5 * Copyright (C) 2018 AT&T
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
22
23package org.onap.osam.config;
24
25
26import org.hibernate.SessionFactory;
27import org.onap.osam.job.JobAdapter;
28import org.onap.osam.job.JobsBrokerService;
29import org.onap.osam.job.impl.JobAdapterImpl;
30import org.onap.osam.job.impl.JobsBrokerServiceInDatabaseImpl;
31import org.onap.osam.properties.VidProperties;
32import org.onap.portalsdk.core.service.DataAccessService;
33import org.onap.portalsdk.core.util.SystemProperties;
34import org.springframework.context.annotation.Bean;
35import org.springframework.context.annotation.Configuration;
36import org.springframework.transaction.annotation.EnableTransactionManagement;
37
38@Configuration
39@EnableTransactionManagement
40public class JobAdapterConfig {
41
42 @Bean
43 public JobAdapter jobAdapter() {
44 return new JobAdapterImpl();
45 }
46
47 @Bean
48 public JobsBrokerService jobsBrokerService(DataAccessService dataAccessService, SessionFactory sessionFactory) {
49 int maxOpenedInstantiationRequestsToMso = Integer.parseInt(SystemProperties.getProperty(VidProperties.MSO_MAX_OPENED_INSTANTIATION_REQUESTS));
50 int pollingIntervalSeconds = Integer.parseInt(SystemProperties.getProperty(VidProperties.MSO_ASYNC_POLLING_INTERVAL_SECONDS));
51
52 return new JobsBrokerServiceInDatabaseImpl(dataAccessService, sessionFactory, maxOpenedInstantiationRequestsToMso, pollingIntervalSeconds);
53 }
54
55}