
net.cassite.daf4j.jpa.JPQLQuery Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of daf4j-ds-jpa Show documentation
Show all versions of daf4j-ds-jpa Show documentation
A library provides implementation of DAF4J DataAccess using JPA
The newest version!
package net.cassite.daf4j.jpa;
import net.cassite.daf4j.Query;
import javax.persistence.EntityManager;
/**
* JPQLQuery
*/
public class JPQLQuery extends Query {
private EntityManager entityManager;
public JPQLQuery(EntityManager manager) {
super(new JPQLDataSource(manager));
this.entityManager = manager;
}
public EntityManager getEntityManager() {
return entityManager;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy