Format Java code with respect to ONAP Code Style
[externalapi/nbi.git] / src / main / java / org / onap / nbi / apis / serviceorder / workflow / ExecutionTaskProcessorScheduler.java
1 /**
2  * Copyright (c) 2018 Orange
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
5  * in compliance with the License. You may obtain a copy of the License at
6  *
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software distributed under the License
10  * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
11  * or implied. See the License for the specific language governing permissions and limitations under
12  * the License.
13  */
14
15 package org.onap.nbi.apis.serviceorder.workflow;
16
17 import java.util.List;
18 import org.onap.nbi.apis.serviceorder.model.orchestrator.ExecutionTask;
19 import org.onap.nbi.apis.serviceorder.repositories.ExecutionTaskRepository;
20 import org.springframework.beans.factory.annotation.Autowired;
21 import org.springframework.context.annotation.Profile;
22 import org.springframework.scheduling.annotation.EnableScheduling;
23 import org.springframework.scheduling.annotation.Scheduled;
24 import org.springframework.stereotype.Service;
25
26 @Profile("default")
27 @Service
28 @EnableScheduling
29 public class ExecutionTaskProcessorScheduler {
30
31     @Autowired
32     ExecutionTaskRepository executionTaskRepository;
33
34     @Autowired
35     SOTaskProcessor soTaskProcessor;
36
37     // Using fixedDelay to mitigate against Scheduler queue backlog with fixedRate
38     @Scheduled(fixedDelayString = "${executionTask.schedule}", initialDelayString = "${executionTask.initial}")
39     private void processExecutionPlan() throws InterruptedException {
40         List<ExecutionTask> taskToExecute = executionTaskRepository.findByReliedTasksIsEmpty();
41         for (ExecutionTask executionTask : taskToExecute) {
42             soTaskProcessor.processOrderItem(executionTask);
43         }
44     }
45 }