org.ikasan.configurationService.dao.XAConfigurationDaoHibernateImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ikasan-configuration-service Show documentation
Show all versions of ikasan-configuration-service Show documentation
Ikasan Default Configuration Service Implementation
The newest version!
package org.ikasan.configurationService.dao;
import jakarta.persistence.EntityManager;
import jakarta.persistence.PersistenceContext;
public class XAConfigurationDaoHibernateImpl extends AbstractConfigurationDaoHibernateImpl {
@PersistenceContext(unitName = "xa-configuration-service")
private EntityManager entityManager;
@Override
public EntityManager getEntityManager() {
return this.entityManager;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy