Update Batch from Testing
[aaf/authz.git] / auth / auth-batch / src / main / java / org / onap / aaf / auth / batch / actions / ActionDAO.java
1 /**
2  * ============LICENSE_START====================================================
3  * org.onap.aaf
4  * ===========================================================================
5  * Copyright (c) 2018 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
22 package org.onap.aaf.auth.batch.actions;
23
24 import java.io.IOException;
25
26 import org.onap.aaf.auth.dao.CassAccess;
27 import org.onap.aaf.auth.dao.hl.Function;
28 import org.onap.aaf.auth.dao.hl.Question;
29 import org.onap.aaf.auth.env.AuthzTrans;
30 import org.onap.aaf.misc.env.APIException;
31
32 import com.datastax.driver.core.Cluster;
33 import com.datastax.driver.core.Session;
34
35 public abstract class ActionDAO<D,RV,T> implements Action<D,RV,T> {
36     protected final Question q; 
37     protected final Function f;
38     private boolean clean;
39     protected final boolean dryRun;
40
41     public ActionDAO(AuthzTrans trans, Cluster cluster, boolean dryRun) throws APIException, IOException {
42         q = new Question(trans, cluster, CassAccess.KEYSPACE, false);
43         f = new Function(trans,q);
44         clean = true;
45         this.dryRun = dryRun;
46     }
47     
48     public ActionDAO(AuthzTrans trans, ActionDAO<?,?,?> predecessor) {
49         q = predecessor.q;
50         f = new Function(trans,q);
51         clean = false;
52         dryRun = predecessor.dryRun;
53     }
54     
55     public Session getSession(AuthzTrans trans) throws APIException, IOException {
56         return q.historyDAO.getSession(trans);
57     }
58     
59     public Question question() {
60         return q;
61     }
62     
63     public Function function() {
64         return f;
65     }
66
67     public void close(AuthzTrans trans) {
68         if (clean) {
69             q.close(trans);
70         }
71     }
72
73 }