Migrate parent from springboot to oparent
[externalapi/nbi.git] / src / main / java / org / onap / nbi / apis / hub / service / DMaaPEventsScheduler.java
1 /**
2  * Copyright (c) 2019 Huawei
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.hub.service;
16
17 import java.io.FileNotFoundException;
18 import java.io.IOException;
19 import org.springframework.beans.factory.annotation.Autowired;
20 import org.springframework.context.annotation.Profile;
21 import org.springframework.scheduling.annotation.EnableScheduling;
22 import org.springframework.scheduling.annotation.Scheduled;
23 import org.springframework.stereotype.Service;
24
25 @Profile("default")
26 @Service
27 @EnableScheduling
28 public class DMaaPEventsScheduler {
29
30   @Autowired
31   CheckDMaaPEventsManager checkDMaaPEventsManager;
32
33   @Scheduled(fixedDelayString = "${dmaapCheck.schedule}",
34       initialDelayString = "${dmaapCheck.initial}")
35   private void processDMaaPEvents() {
36       checkDMaaPEventsManager.checkForDMaaPAAIEvents();
37     
38   }
39 }
40