Class PersistenceUnitInfoImpl
- java.lang.Object
-
- org.apache.tapestry5.internal.jpa.PersistenceUnitInfoImpl
-
- All Implemented Interfaces:
PersistenceUnitInfo
,TapestryPersistenceUnitInfo
public class PersistenceUnitInfoImpl extends Object implements TapestryPersistenceUnitInfo
-
-
Constructor Summary
Constructors Constructor Description PersistenceUnitInfoImpl(String persistenceUnitName)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TapestryPersistenceUnitInfo
addJarFileUrl(String url)
Add a URLs for the jar file or exploded jar file directory that the persistence provider must examine for managed classes of the persistence unit.TapestryPersistenceUnitInfo
addJarFileUrl(URL url)
Add a URLs for the jar file or exploded jar file directory that the persistence provider must examine for managed classes of the persistence unit.TapestryPersistenceUnitInfo
addManagedClass(Class<?> clazz)
Add a managed class to be used by persistence provider.TapestryPersistenceUnitInfo
addManagedClassName(String className)
Add a managed class name to be used by persistence provider.TapestryPersistenceUnitInfo
addMappingFileName(String fileName)
Add a mapping file to be loaded by the persistence provider to determine the mappings for the entity classes.TapestryPersistenceUnitInfo
addProperty(String name, String value)
Add a property.void
addTransformer(ClassTransformer transformer)
boolean
excludeUnlistedClasses()
TapestryPersistenceUnitInfo
excludeUnlistedClasses(boolean exclude)
Defines whether classes in the root of the persistence unit that have not been explicitly listed are to be included in the set of managed classes.ClassLoader
getClassLoader()
Map
getEntityManagerProperties()
List<URL>
getJarFileUrls()
DataSource
getJtaDataSource()
List<String>
getManagedClassNames()
List<String>
getMappingFileNames()
ClassLoader
getNewTempClassLoader()
DataSource
getNonJtaDataSource()
String
getPersistenceProviderClassName()
String
getPersistenceUnitName()
URL
getPersistenceUnitRootUrl()
String
getPersistenceXMLSchemaVersion()
Properties
getProperties()
SharedCacheMode
getSharedCacheMode()
PersistenceUnitTransactionType
getTransactionType()
ValidationMode
getValidationMode()
TapestryPersistenceUnitInfo
jtaDataSource(String jtaDataSource)
Set the JTA-enabled data source to be used by the persistence provider for accessing data outside a JTA transaction.TapestryPersistenceUnitInfo
nonJtaDataSource(String nonJtaDataSource)
Set the non-JTA-enabled data source to be used by the persistence provider for accessing data outside a JTA transaction.TapestryPersistenceUnitInfo
persistenceProviderClassName(String persistenceProviderClassName)
Set the the fully qualified name of the persistence provider implementation class.TapestryPersistenceUnitInfo
setEntityManagerProperties(Map properties)
PersistenceProvider
allows creating anEntityManagerFactory
with a default EntityManager properties map.void
setPersistenceXMLSchemaVersion(String version)
TapestryPersistenceUnitInfo
sharedCacheMode(SharedCacheMode cacheMode)
Defines how the persistence provider must use a second-level cache for the persistence unit.TapestryPersistenceUnitInfo
transactionType(PersistenceUnitTransactionType transactionType)
Set the transaction type of the entity managers.TapestryPersistenceUnitInfo
validationMode(ValidationMode validationMode)
Set the validation mode to be used by the persistence provider for the persistence unit.
-
-
-
Constructor Detail
-
PersistenceUnitInfoImpl
public PersistenceUnitInfoImpl(String persistenceUnitName)
-
-
Method Detail
-
getPersistenceUnitName
public String getPersistenceUnitName()
- Specified by:
getPersistenceUnitName
in interfacePersistenceUnitInfo
-
getPersistenceProviderClassName
public String getPersistenceProviderClassName()
- Specified by:
getPersistenceProviderClassName
in interfacePersistenceUnitInfo
-
persistenceProviderClassName
public TapestryPersistenceUnitInfo persistenceProviderClassName(String persistenceProviderClassName)
Set the the fully qualified name of the persistence provider implementation class. Corresponds to theprovider
element in thepersistence.xml
file.- Specified by:
persistenceProviderClassName
in interfaceTapestryPersistenceUnitInfo
- Parameters:
persistenceProviderClassName
- persistence provider's class name
-
getTransactionType
public PersistenceUnitTransactionType getTransactionType()
- Specified by:
getTransactionType
in interfacePersistenceUnitInfo
-
transactionType
public TapestryPersistenceUnitInfo transactionType(PersistenceUnitTransactionType transactionType)
Set the transaction type of the entity managers. Corresponds to thetransaction-type
attribute in thepersistence.xml
file.- Specified by:
transactionType
in interfaceTapestryPersistenceUnitInfo
- Parameters:
transactionType
- transition type to set
-
getJtaDataSource
public DataSource getJtaDataSource()
- Specified by:
getJtaDataSource
in interfacePersistenceUnitInfo
-
getNonJtaDataSource
public DataSource getNonJtaDataSource()
- Specified by:
getNonJtaDataSource
in interfacePersistenceUnitInfo
-
nonJtaDataSource
public TapestryPersistenceUnitInfo nonJtaDataSource(String nonJtaDataSource)
Set the non-JTA-enabled data source to be used by the persistence provider for accessing data outside a JTA transaction. Corresponds to the namednon-jta-data-source
element in thepersistence.xml
file.- Specified by:
nonJtaDataSource
in interfaceTapestryPersistenceUnitInfo
- Parameters:
nonJtaDataSource
- data source to set
-
jtaDataSource
public TapestryPersistenceUnitInfo jtaDataSource(String jtaDataSource)
Set the JTA-enabled data source to be used by the persistence provider for accessing data outside a JTA transaction. Corresponds to the namedjta-data-source
element in thepersistence.xml
file.- Specified by:
jtaDataSource
in interfaceTapestryPersistenceUnitInfo
- Parameters:
jtaDataSource
- data source to set
-
getMappingFileNames
public List<String> getMappingFileNames()
- Specified by:
getMappingFileNames
in interfacePersistenceUnitInfo
-
addMappingFileName
public TapestryPersistenceUnitInfo addMappingFileName(String fileName)
Add a mapping file to be loaded by the persistence provider to determine the mappings for the entity classes. Corresponds to amapping-file
element in thepersistence.xml
file.- Specified by:
addMappingFileName
in interfaceTapestryPersistenceUnitInfo
- Parameters:
fileName
- mapping file name to add
-
addJarFileUrl
public TapestryPersistenceUnitInfo addJarFileUrl(URL url)
Add a URLs for the jar file or exploded jar file directory that the persistence provider must examine for managed classes of the persistence unit. Corresponds to ajar-file
element in thepersistence.xml
file.- Specified by:
addJarFileUrl
in interfaceTapestryPersistenceUnitInfo
- Parameters:
url
- url to add
-
addJarFileUrl
public TapestryPersistenceUnitInfo addJarFileUrl(String url)
Add a URLs for the jar file or exploded jar file directory that the persistence provider must examine for managed classes of the persistence unit. Corresponds to ajar-file
element in thepersistence.xml
file.- Specified by:
addJarFileUrl
in interfaceTapestryPersistenceUnitInfo
- Parameters:
url
- url to add
-
addProperty
public TapestryPersistenceUnitInfo addProperty(String name, String value)
Add a property. Corresponds to aproperty
element in thepersistence.xml
file.- Specified by:
addProperty
in interfaceTapestryPersistenceUnitInfo
- Parameters:
name
- property's namevalue
- property's value
-
excludeUnlistedClasses
public TapestryPersistenceUnitInfo excludeUnlistedClasses(boolean exclude)
Defines whether classes in the root of the persistence unit that have not been explicitly listed are to be included in the set of managed classes. Corresponds to theexclude-unlisted-classes
element in thepersistence.xml
file.- Specified by:
excludeUnlistedClasses
in interfaceTapestryPersistenceUnitInfo
- Parameters:
exclude
- defines whether to exclude or not
-
getJarFileUrls
public List<URL> getJarFileUrls()
- Specified by:
getJarFileUrls
in interfacePersistenceUnitInfo
-
getPersistenceUnitRootUrl
public URL getPersistenceUnitRootUrl()
- Specified by:
getPersistenceUnitRootUrl
in interfacePersistenceUnitInfo
-
getManagedClassNames
public List<String> getManagedClassNames()
- Specified by:
getManagedClassNames
in interfacePersistenceUnitInfo
-
addManagedClassName
public TapestryPersistenceUnitInfo addManagedClassName(String className)
Add a managed class name to be used by persistence provider. Corresponds to a namedclass
element in thepersistence.xml
file.- Specified by:
addManagedClassName
in interfaceTapestryPersistenceUnitInfo
- Parameters:
className
- class name to add- See Also:
TapestryPersistenceUnitInfo.addManagedClass(Class)
-
addManagedClass
public TapestryPersistenceUnitInfo addManagedClass(Class<?> clazz)
Add a managed class to be used by persistence provider. Corresponds to a namedclass
element in thepersistence.xml
file.- Specified by:
addManagedClass
in interfaceTapestryPersistenceUnitInfo
- Parameters:
clazz
- class to add- See Also:
TapestryPersistenceUnitInfo.addManagedClassName(String)
-
excludeUnlistedClasses
public boolean excludeUnlistedClasses()
- Specified by:
excludeUnlistedClasses
in interfacePersistenceUnitInfo
-
getSharedCacheMode
public SharedCacheMode getSharedCacheMode()
- Specified by:
getSharedCacheMode
in interfacePersistenceUnitInfo
-
sharedCacheMode
public TapestryPersistenceUnitInfo sharedCacheMode(SharedCacheMode cacheMode)
Defines how the persistence provider must use a second-level cache for the persistence unit. Corresponds to theshared-cache-mode
element in thepersistence.xml
file.- Specified by:
sharedCacheMode
in interfaceTapestryPersistenceUnitInfo
- Parameters:
cacheMode
- cache mode to set
-
getValidationMode
public ValidationMode getValidationMode()
- Specified by:
getValidationMode
in interfacePersistenceUnitInfo
-
validationMode
public TapestryPersistenceUnitInfo validationMode(ValidationMode validationMode)
Set the validation mode to be used by the persistence provider for the persistence unit. Corresponds to thevalidation-mode
element in thepersistence.xml
file.- Specified by:
validationMode
in interfaceTapestryPersistenceUnitInfo
- Parameters:
validationMode
- validation mode to set
-
getProperties
public Properties getProperties()
- Specified by:
getProperties
in interfacePersistenceUnitInfo
-
getPersistenceXMLSchemaVersion
public String getPersistenceXMLSchemaVersion()
- Specified by:
getPersistenceXMLSchemaVersion
in interfacePersistenceUnitInfo
-
setPersistenceXMLSchemaVersion
public void setPersistenceXMLSchemaVersion(String version)
-
getClassLoader
public ClassLoader getClassLoader()
- Specified by:
getClassLoader
in interfacePersistenceUnitInfo
-
addTransformer
public void addTransformer(ClassTransformer transformer)
- Specified by:
addTransformer
in interfacePersistenceUnitInfo
-
getNewTempClassLoader
public ClassLoader getNewTempClassLoader()
- Specified by:
getNewTempClassLoader
in interfacePersistenceUnitInfo
-
setEntityManagerProperties
public TapestryPersistenceUnitInfo setEntityManagerProperties(Map properties)
Description copied from interface:TapestryPersistenceUnitInfo
PersistenceProvider
allows creating anEntityManagerFactory
with a default EntityManager properties map. This operation allows contributing default properties for EntityManager.- Specified by:
setEntityManagerProperties
in interfaceTapestryPersistenceUnitInfo
- Parameters:
properties
- properties to initialize EntityManagerFactory with
-
getEntityManagerProperties
public Map getEntityManagerProperties()
- Specified by:
getEntityManagerProperties
in interfaceTapestryPersistenceUnitInfo
- Returns:
- Returns the supplied EntityManagerFactory properties. Returns null if not set.
-
-