Interface JPAFinderHelper.EntityManagerExclusions

Enclosing interface:
JPAFinderHelper<TT>

public static interface JPAFinderHelper.EntityManagerExclusions
Convenience interface for use with Delegate when forwarding methods of EntityManager so DaoHelper's own methods get exposed correctly

@Stateless
public class ExampleDelegateDAO {
    @Inject
    @Delegate(excludes = EntityManagerExclusions.class)
    EntityManager entityManager;
    @Inject
    @Delegate
    JPAFinderHelper<UserEntity> jpaFinder;
}
  • Method Details