Interface PersistenceUnitPostProcessor
public interface PersistenceUnitPostProcessor
Callback interface for post-processing a JPA PersistenceUnitInfo.
 Implementations can be registered with a DefaultPersistenceUnitManager
 or via a LocalContainerEntityManagerFactoryBean.
- Since:
 - 2.0
 - Author:
 - Juergen Hoeller
 - See Also:
 
- 
Method Summary
Modifier and TypeMethodDescriptionvoidPost-process the given PersistenceUnitInfo, for example registering further entity classes and jar files. 
- 
Method Details
- 
postProcessPersistenceUnitInfo
Post-process the given PersistenceUnitInfo, for example registering further entity classes and jar files.- Parameters:
 pui- the chosen PersistenceUnitInfo, as read frompersistence.xml. Passed in as MutablePersistenceUnitInfo.
 
 -