All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.alpharogroup.db.resource.bundles.daos.ResourcebundlesDao Maven / Gradle / Ivy

There is a newer version: 5.4
Show newest version
package de.alpharogroup.db.resource.bundles.daos;

import javax.persistence.EntityManager;
import javax.persistence.PersistenceContext;

import org.springframework.stereotype.Repository;

import de.alpharogroup.db.dao.jpa.JpaEntityManagerDao;
import de.alpharogroup.db.resource.bundles.entities.Resourcebundles;

/**
 * The class {@link ResourcebundlesDao}.
 */
@Repository("resourcebundlesDao")
public class ResourcebundlesDao extends JpaEntityManagerDao {
	/**
	 * The serialVersionUID.
	 */
	private static final long serialVersionUID = 1L;

	/** The entity manager. */
	@PersistenceContext
	private EntityManager entityManager;

	/**
	 * {@inheritDoc}
	 */
	@Override
	public EntityManager getEntityManager() {
		return entityManager;
	}

	/**
	 * {@inheritDoc}
	 */
	@Override
	public void setEntityManager(EntityManager entityManager) {
		this.entityManager = entityManager;		
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy