Added DB Query for Legacy Engine Instances
[holmes/common.git] / holmes-actions / src / main / java / org / onap / holmes / common / engine / dao / EngineEntityDao.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.dao;
18
19 import org.onap.holmes.common.engine.entity.EngineEntity;
20 import org.skife.jdbi.v2.sqlobject.Bind;
21 import org.skife.jdbi.v2.sqlobject.BindBean;
22 import org.skife.jdbi.v2.sqlobject.SqlQuery;
23 import org.skife.jdbi.v2.sqlobject.SqlUpdate;
24 import org.skife.jdbi.v2.sqlobject.customizers.RegisterMapper;
25
26 import java.util.List;
27
28 @RegisterMapper(EngineEntityMapper.class)
29 public interface EngineEntityDao {
30     @SqlQuery("SELECT * FROM ENGINE_ENTITY WHERE ID = :id")
31     EngineEntity getEntity(@Bind("id") String id);
32
33     @SqlQuery("SELECT * FROM ENGINE_ENTITY")
34     List<EngineEntity> getAllEntities();
35
36     @SqlQuery("SELECT DISTINCT(ENGINEINSTANCE) FROM APLUS_RULE")
37     List<String> getLegacyEngines();
38
39     @SqlUpdate("INSERT INTO ENGINE_ENTITY VALUES (:id, :ip, :port, :lastModified)")
40     void insertEntity(@BindBean EngineEntity entity);
41
42     @SqlUpdate("UPDATE ENGINE_ENTITY SET LASTMODIFIED = :lastModified WHERE ID = :id")
43     void updateEntity(@BindBean EngineEntity entity);
44
45     @SqlUpdate("DELETE FROM ENGINE_ENTITY WHERE ID = :id")
46     void deleteEntity(@Bind("id") String id);
47 }