ONAP-REST DAO Sonar/Checkstyle clean and knock-on
[policy/engine.git] / ONAP-REST / src / main / java / org / onap / policy / rest / dao / CommonClassDao.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP-REST
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * Modifications Copyright (C) 2019 Nordix Foundation.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.rest.dao;
23
24 import java.util.List;
25
26 import javax.script.SimpleBindings;
27
28 import org.onap.policy.rest.jpa.PolicyRoles;
29
30 public interface CommonClassDao {
31
32     // Common methods
33     List<Object> getData(@SuppressWarnings("rawtypes") Class className);
34
35     List<Object> getDataById(@SuppressWarnings("rawtypes") Class className, String columnName, String key);
36
37     List<String> getDataByColumn(@SuppressWarnings("rawtypes") Class className, String columnName);
38
39     List<Object> checkDuplicateEntry(String value, String columnName, @SuppressWarnings("rawtypes") Class className);
40
41     Object getEntityItem(@SuppressWarnings("rawtypes") Class className, String columnName, String key);
42
43     List<Object> getDataByQuery(String query, SimpleBindings params);
44
45     List<Object> getMultipleDataOnAddingConjunction(@SuppressWarnings("rawtypes") Class className, String columnName,
46             List<String> data);
47
48     void save(Object entity);
49
50     void delete(Object entity);
51
52     void update(Object entity);
53
54     void updateQuery(String query);
55
56     // Group Policy Scope
57     List<Object> checkExistingGroupListforUpdate(String groupListValue, String groupNameValue);
58
59     // Roles
60     List<PolicyRoles> getUserRoles();
61
62     // ClosedLoops
63     void updateClAlarms(String clName, String alarms);
64
65     void updateClYaml(String clName, String yaml);
66
67     void deleteAll();
68 }