Coverage Report - org.trails.hibernate.Interceptable
 
Classes in this File Line Coverage Branch Coverage Complexity
Interceptable
N/A 
N/A 
1
 
 1  
 /*
 2  
  * Copyright 2004 Chris Nelson
 3  
  *
 4  
  * Licensed under the Apache License, Version 2.0 (the "License");
 5  
  * you may not use this file except in compliance with the License.
 6  
  * You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
 7  
  * Unless required by applicable law or agreed to in writing,
 8  
  * software distributed under the License is distributed on an "AS IS" BASIS,
 9  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 10  
  * See the License for the specific language governing permissions and limitations under the License.
 11  
  */
 12  
 /*
 13  
  * Created on Jun 17, 2004
 14  
  *
 15  
  * To change the template for this generated file go to
 16  
  * Window>Preferences>Java>Code Generation>Code and Comments
 17  
  */
 18  
 package org.trails.hibernate;
 19  
 
 20  
 import java.io.Serializable;
 21  
 
 22  
 import org.hibernate.type.Type;
 23  
 
 24  
 
 25  
 public interface Interceptable
 26  
 {
 27  
         public boolean onLoad(Serializable id, Object[] state, String[] propertyNames, Type[] types);
 28  
 
 29  
         public boolean onInsert(Serializable id, Object[] state, String[] propertyNames, Type[] types);
 30  
 
 31  
         public boolean onUpdate(Serializable id, Object[] currentState, Object[] previousState, String[] propertyNames, Type[] types);
 32  
 }