0056a2bf5da956b676978199fd696f3c5c15b521
[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  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.rest.dao;
22
23 import java.util.List;
24
25 import org.onap.policy.rest.jpa.PolicyRoles;
26 import javax.script.SimpleBindings;
27
28 public interface CommonClassDao {
29
30     //Common methods
31     List<Object> getData(@SuppressWarnings("rawtypes") Class className);
32     List<Object> getDataById(@SuppressWarnings("rawtypes") Class className, String columnName, String key);
33     List<String> getDataByColumn(@SuppressWarnings("rawtypes") Class className, String columnName);
34     List<Object> checkDuplicateEntry(String value, String columnName,  @SuppressWarnings("rawtypes") Class className);
35     Object getEntityItem(@SuppressWarnings("rawtypes") Class className, String columnName, String key);
36     List<Object>  getDataByQuery(String query, SimpleBindings params);
37     List<Object>  getMultipleDataOnAddingConjunction(@SuppressWarnings("rawtypes") Class className, String columnName, List<String> data);
38     void save(Object entity);
39     void delete(Object entity);
40     void update(Object entity);
41     void updateQuery(String query);
42
43     //Group Policy Scope
44     List<Object> checkExistingGroupListforUpdate(String groupListValue, String groupNameValue);
45
46
47     //Roles
48     List<PolicyRoles> getUserRoles();
49
50
51     //ClosedLoops
52     void updateClAlarms(String clName, String alarms);
53     void updateClYaml(String clName, String yaml);
54     void deleteAll();
55
56
57
58 }