Coverage Report - org.kuali.rice.kns.service.PostDataLoadEncryptionService
 
Classes in this File Line Coverage Branch Coverage Complexity
PostDataLoadEncryptionService
N/A
N/A
1
 
 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.service;
 14  
 
 15  
 import java.util.Set;
 16  
 
 17  
 import org.kuali.rice.kns.bo.PersistableBusinessObject;
 18  
 
 19  
 public interface PostDataLoadEncryptionService {
 20  
         
 21  
         public void checkArguments(Class businessObjectClass, Set<String> attributeNames);
 22  
         
 23  
     public void checkArguments(Class businessObjectClass, Set<String> attributeNames, boolean checkOjbEncryptConfig);
 24  
 
 25  
     public void createBackupTable(Class businessObjectClass);
 26  
 
 27  
     public void prepClassDescriptor(Class businessObjectClass, Set<String> attributeNames);
 28  
 
 29  
     public void truncateTable(Class businessObjectClass);
 30  
 
 31  
     public void encrypt(PersistableBusinessObject businessObject, Set<String> attributeNames);
 32  
 
 33  
     public void restoreClassDescriptor(Class businessObjectClass, Set<String> attributeNames);
 34  
 
 35  
     public void restoreTableFromBackup(Class businessObjectClass);
 36  
 
 37  
     public void dropBackupTable(Class businessObjectClass);
 38  
 }