0d9f0505a1c9ee7ae90d0549920278a203086dca
[externalapi/nbi.git] / src / main / java / org / onap / nbi / apis / serviceorder / workflow / ServiceOrderCheckScheduler.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 package org.onap.nbi.apis.serviceorder.workflow;
15
16 import java.util.List;
17 import org.onap.nbi.apis.serviceorder.ServiceOrderResource;
18 import org.onap.nbi.apis.serviceorder.model.ServiceOrder;
19 import org.onap.nbi.apis.serviceorder.model.StateType;
20 import org.onap.nbi.apis.serviceorder.service.ServiceOrderService;
21 import org.springframework.beans.factory.annotation.Autowired;
22 import org.springframework.context.annotation.Profile;
23 import org.springframework.scheduling.annotation.EnableScheduling;
24 import org.springframework.scheduling.annotation.Scheduled;
25 import org.springframework.stereotype.Service;
26
27 @Profile("default")
28 @Service
29 @EnableScheduling
30 public class ServiceOrderCheckScheduler {
31
32   @Autowired
33   ServiceOrderService serviceOrderService;
34
35   @Autowired
36   ServiceOrderResource serviceOrderResource;
37
38
39   @Scheduled(fixedDelayString = "${serviceOrder.schedule}", initialDelayString = "${serviceOrder.initial}")
40   public void scheduleCheckServiceOrders() {
41     List<ServiceOrder> acknowledgedOrders = serviceOrderService
42         .findServiceOrdersByState(StateType.ACKNOWLEDGED);
43     for (ServiceOrder serviceOrder : acknowledgedOrders) {
44       serviceOrderResource.checkServiceOrder(serviceOrder);
45     }
46   }
47
48 }