[POLICY-73] replace openecomp for policy-engine
[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
27 public interface CommonClassDao {
28
29         //Common methods
30         List<Object> getData(@SuppressWarnings("rawtypes") Class className);
31         List<Object> getDataById(@SuppressWarnings("rawtypes") Class className, String columnName, String key);
32         List<String> getDataByColumn(@SuppressWarnings("rawtypes") Class className, String columnName);
33         List<Object> checkDuplicateEntry(String value, String columnName,  @SuppressWarnings("rawtypes") Class className);
34         Object getEntityItem(@SuppressWarnings("rawtypes") Class className, String columnName, String key);
35         List<Object>  getDataByQuery(String query);
36         List<Object>  getMultipleDataOnAddingConjunction(@SuppressWarnings("rawtypes") Class className, String columnName, List<String> data);
37         void save(Object entity);
38         void delete(Object entity);
39         void update(Object entity);
40         void updateQuery(String query);
41         
42         //Group Policy Scope
43         List<Object> checkExistingGroupListforUpdate(String groupListValue, String groupNameValue);
44         
45         
46         //Roles
47         List<PolicyRoles> getUserRoles();
48         
49         
50         //ClosedLoops
51         void updateClAlarms(String clName, String alarms);
52         void updateClYaml(String clName, String yaml);
53         void deleteAll();
54          
55         
56         
57 }