| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| PrioritizedService |
|
| 1.0;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 | } |