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