Coverage Report - org.trails.hibernate.HibernatePersistenceValidationAdvice
 
Classes in this File Line Coverage Branch Coverage Complexity
HibernatePersistenceValidationAdvice
0% 
N/A 
1
 
 1  
 package org.trails.hibernate;
 2  
 
 3  
 import java.lang.reflect.Method;
 4  
 
 5  
 import org.springframework.aop.MethodBeforeAdvice;
 6  
 
 7  
 
 8  
 public class HibernatePersistenceValidationAdvice implements MethodBeforeAdvice
 9  
 {
 10  
 
 11  
         public HibernatePersistenceValidationAdvice()
 12  
         {
 13  0
                 super();
 14  
                 // TODO Auto-generated constructor stub
 15  0
         }
 16  
 
 17  
         public void before(Method arg0, Object[] arg1, Object arg2) throws Throwable
 18  
         {
 19  
                 //System.out.println("in advice");
 20  0
         }
 21  
 
 22  
 }