Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
DatabaseParser |
|
| 1.0;1 |
1 | package org.kuali.core.db.torque; | |
2 | ||
3 | import org.apache.torque.engine.EngineException; | |
4 | import org.apache.torque.engine.database.model.Database; | |
5 | ||
6 | /** | |
7 | * This lets KualiTorqueSQLTask and KualiXmlToAppData play nicely with Torque 3.3 Maven Plugin Mojo's | |
8 | */ | |
9 | public interface DatabaseParser { | |
10 | ||
11 | public Database parseResource(String location) throws EngineException; | |
12 | ||
13 | } |