Coverage Report - liquibase.servicelocator.PrioritizedService
 
Classes in this File Line Coverage Branch Coverage Complexity
PrioritizedService
N/A
N/A
1
 
 1  
 package liquibase.servicelocator;
 2  
 
 3  
 public interface PrioritizedService {
 4  
 
 5  
     final int PRIORITY_DEFAULT = 1;
 6  
     final int PRIORITY_DATABASE = 5;
 7  
 
 8  
     int getPriority();
 9  
 }