Added DB Query for Legacy Engine Instances
[holmes/common.git] / holmes-actions / src / main / java / org / onap / holmes / common / engine / service / impl / EngineEntityServiceImpl.java
1 /**
2  * Copyright 2020 ZTE Corporation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.onap.holmes.common.engine.service.impl;
18
19 import org.jvnet.hk2.annotations.Service;
20 import org.onap.holmes.common.engine.dao.EngineEntityDao;
21 import org.onap.holmes.common.engine.entity.EngineEntity;
22 import org.onap.holmes.common.engine.service.EngineEntityService;
23 import org.onap.holmes.common.utils.DbDaoUtil;
24
25 import javax.inject.Inject;
26 import java.util.List;
27
28 @Service
29 public class EngineEntityServiceImpl implements EngineEntityService {
30
31     private EngineEntityDao engineEntityDao;
32
33     @Inject
34     public EngineEntityServiceImpl(DbDaoUtil dbDaoUtil){
35         engineEntityDao = dbDaoUtil.getJdbiDaoByOnDemand(EngineEntityDao.class);
36     }
37
38     @Override
39     public EngineEntity getEntity(String id) {
40         return engineEntityDao.getEntity(id);
41     }
42
43     @Override
44     public List<EngineEntity> getAllEntities() {
45         return engineEntityDao.getAllEntities();
46     }
47
48     @Override
49     public List<String> getLegacyEngines() {
50         return engineEntityDao.getLegacyEngines();
51     }
52
53     @Override
54     public void updateEntity(EngineEntity entity) {
55         engineEntityDao.updateEntity(entity);
56     }
57
58     @Override
59     public void insertEntity(EngineEntity entity) {
60         engineEntityDao.insertEntity(entity);
61     }
62
63     @Override
64     public void deleteEntity(String id) {
65         engineEntityDao.deleteEntity(id);
66     }
67 }