View Javadoc

1   /*
2    * Copyright 2007 The Kuali Foundation
3    * 
4    * Licensed under the Educational Community License, Version 2.0 (the "License"); you may not use this file except in
5    * compliance with the License. You may obtain a copy of the License at
6    * 
7    * http://www.opensource.org/licenses/ecl2.php
8    * 
9    * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS
10   * IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific
11   * language governing permissions and limitations under the License.
12   */
13  package org.kuali.rice.kns.dao;
14  
15  
16  /**
17   * This interface defines the DB access methods required by the PostDataLoadEncryptionService
18   */
19  public interface PostDataLoadEncryptionDao {
20      public void createBackupTable(String tableName);
21  
22      public void truncateTable(String tableName);
23  
24      public void restoreTableFromBackup(String tableName);
25  
26      public void dropBackupTable(String tableName);
27  }