Add JavaDoc to signal Hibrnate OGM dependencies

This commit is contained in:
Emmanuel Bernard 2011-03-17 10:24:08 +01:00
parent e9f975e6f8
commit c526efd6be
3 changed files with 6 additions and 3 deletions

View File

@ -33,6 +33,7 @@ import org.slf4j.LoggerFactory;
/**
* Resolve JPA xsd files locally
* Hibernate OGM uses this class, consider this some kind of exposed service at the SPI level
*
* @author Emmanuel Bernard
*/

View File

@ -34,6 +34,7 @@ import javax.persistence.spi.PersistenceUnitTransactionType;
* Simple represenation of persistence.xml
*
* Object used by JBoss EJB 3 for persistence.xml parsing
* Object used by Hibernate OGM as well, consider this some kind of exposed service at the SPI level
*
* @author <a href="mailto:bill@jboss.org">Bill Burke</a>
*/

View File

@ -160,9 +160,10 @@ public final class PersistenceXmlLoader {
return deploy(url, overrides, resolver, PersistenceUnitTransactionType.JTA);
}
/**
* Method used by JBoss EJB3 (4.2 and above) for parsing
*/
/**
* Method used by JBoss EJB3 (4.2 and above) for parsing
* Object used by Hibernate OGM as well, consider this some kind of exposed service at the SPI level
*/
public static List<PersistenceMetadata> deploy(URL url, Map overrides, EntityResolver resolver,
PersistenceUnitTransactionType defaultTransactionType) throws Exception {
Document doc = loadURL( url, resolver );