public interface IPluginEntitiesParams extends IPluginParameters, Serializable
Modifier and Type | Method and Description |
---|---|
javax.persistence.EntityManagerFactory |
getEntityManagerFactory()
Returns the
EntityManagerFactory the plugin should use to create new EntityManager s. |
IPluginEmManager |
getPluginEmManager()
To make it easier to work with entities, you can use the em manager provided by this method.
|
javax.persistence.EntityManagerFactory getEntityManagerFactory()
EntityManagerFactory
the plugin should use to create new EntityManager
s. The entity
manager lets you create new entities, query for existing entities or delete entities. This is a low-level API
method, consider using getPluginEmManager()
instead.EntityManagerFactory
for creating a new EntityManager
.getPluginEmManager()
IPluginEmManager getPluginEmManager()
IPluginEmManager
for more details on how to use it.EntityManager
that also lets you create an IBaseEntityContext
that can be
used with the DAO API of FORMCYCLE.Copyright © 2021 XIMA MEDIA GmbH. All rights reserved.