|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use DataExtent | |
---|---|
ch.elca.el4j.services.persistence.hibernate.dao | |
ch.elca.el4j.services.persistence.hibernate.dao.extent | |
ch.elca.el4j.services.persistence.jpa.dao |
Uses of DataExtent in ch.elca.el4j.services.persistence.hibernate.dao |
---|
Methods in ch.elca.el4j.services.persistence.hibernate.dao with parameters of type DataExtent | |
---|---|
protected List<T> |
GenericHibernateDao.fetchExtent(List<T> objects,
DataExtent extent)
Prototype of Extent-based fetching, steps through all the retrieved objects and calls the methods of the extent to ensure loading from db. |
protected T |
GenericHibernateDao.fetchExtent(T object,
DataExtent extent)
Prototype of Extent-based fetching, steps through all the retrieved objects and calls the methods of the extent to ensure loading from db. |
List<T> |
ConvenienceGenericHibernateDao.findByCriteria(DetachedCriteria hibernateCriteria,
DataExtent extent)
Retrieves all the domain objects matching the Hibernate criteria. |
List<T> |
GenericHibernateDao.findByCriteria(DetachedCriteria hibernateCriteria,
DataExtent extent)
Retrieves all the domain objects matching the Hibernate criteria. |
List<T> |
ConvenienceGenericHibernateDao.findByCriteria(DetachedCriteria hibernateCriteria,
int firstResult,
int maxResults,
DataExtent extent)
Retrieves a range of domain objects matching the Hibernate criteria. |
List<T> |
GenericHibernateDao.findByCriteria(DetachedCriteria hibernateCriteria,
int firstResult,
int maxResults,
DataExtent extent)
Retrieves a range of domain objects matching the Hibernate criteria. |
T |
ConvenienceGenericHibernateDao.findById(ID id,
boolean lock,
DataExtent extent)
Retrieves a domain object by identifier, optionally obtaining a database lock for this operation. |
T |
GenericHibernateDao.findById(ID id,
boolean lock,
DataExtent extent)
Retrieves a domain object by identifier, optionally obtaining a database lock for this operation. |
T |
ConvenienceGenericHibernateDao.findById(ID id,
DataExtent extent)
Retrieves a domain object by identifier. |
T |
GenericHibernateDao.findById(ID id,
DataExtent extent)
Retrieves a domain object by identifier. |
List<T> |
ConvenienceGenericHibernateDao.findByQuery(QueryObject q,
DataExtent extent)
Executes a query based on a given query object. |
List<T> |
GenericHibernateDao.findByQuery(QueryObject q,
DataExtent extent)
Executes a query based on a given query object. |
List<T> |
ConvenienceGenericHibernateDao.getAll(DataExtent extent)
Retrieves all the domain objects of type T. |
List<T> |
GenericHibernateDao.getAll(DataExtent extent)
Retrieves all the domain objects of type T. |
T |
ConvenienceGenericHibernateDao.refresh(T entity,
DataExtent extent)
Re-reads the state of the given domain object from the underlying store. |
T |
GenericHibernateDao.refresh(T entity,
DataExtent extent)
Re-reads the state of the given domain object from the underlying store. |
T |
ConvenienceGenericHibernateDao.reload(T entity,
DataExtent extent)
Re-reads the state of the given domain object from the undermost store (eg. the database). |
T |
GenericHibernateDao.reload(T entity,
DataExtent extent)
Re-reads the state of the given domain object from the undermost store (eg. the database). |
Uses of DataExtent in ch.elca.el4j.services.persistence.hibernate.dao.extent |
---|
Methods in ch.elca.el4j.services.persistence.hibernate.dao.extent that return DataExtent | |
---|---|
DataExtent |
DataExtent.all()
Include all fields, entities and collections of the class. |
DataExtent |
DataExtent.all(int depth)
Include all fields, entities and collections of the class. |
DataExtent |
DataExtent.freeze()
Freeze the extent, meaning that no further changes to it are possible. |
DataExtent |
DataExtent.merge(DataExtent other)
Merge two DataExtents. |
DataExtent |
DataExtent.with(String... fields)
Extend the extent by the given fields. |
DataExtent |
DataExtent.without(String... fields)
Exclude fields from the extent. |
DataExtent |
DataExtent.withSubentities(AbstractExtentPart... entities)
Extend the extent by the given sub-entities. |
Methods in ch.elca.el4j.services.persistence.hibernate.dao.extent with parameters of type DataExtent | |
---|---|
DataExtent |
DataExtent.merge(DataExtent other)
Merge two DataExtents. |
Uses of DataExtent in ch.elca.el4j.services.persistence.jpa.dao |
---|
Methods in ch.elca.el4j.services.persistence.jpa.dao with parameters of type DataExtent | |
---|---|
protected List<T> |
GenericJpaDao.fetchExtent(List<T> objects,
DataExtent extent)
Prototype of Extent-based fetching, steps through all the retrieved objects and calls the methods of the extent to ensure loading from db. |
protected T |
GenericJpaDao.fetchExtent(T object,
DataExtent extent)
Prototype of Extent-based fetching, steps through all the retrieved objects and calls the methods of the extent to ensure loading from db. |
T |
ConvenienceGenericJpaDao.findById(ID id,
DataExtent extent)
Retrieves a domain object by identifier. |
T |
GenericJpaDao.findById(ID id,
DataExtent extent)
Retrieves a domain object by identifier. |
List<T> |
ConvenienceGenericJpaDao.findByQuery(QueryBuilder criteria,
DataExtent extent)
Retrieves all the domain objects matching the JPA criteria. |
List<T> |
GenericJpaDao.findByQuery(QueryBuilder criteria,
DataExtent extent)
Retrieves all the domain objects matching the JPA criteria. |
List<T> |
ConvenienceGenericJpaDao.findByQuery(QueryBuilder criteria,
int firstResult,
int maxResults,
DataExtent extent)
Retrieves a range of domain objects matching the JPA criteria. |
List<T> |
GenericJpaDao.findByQuery(QueryBuilder criteria,
int firstResult,
int maxResults,
DataExtent extent)
Retrieves a range of domain objects matching the JPA criteria. |
List<T> |
ConvenienceGenericJpaDao.getAll(DataExtent extent)
Retrieves all the domain objects of type T. |
List<T> |
GenericJpaDao.getAll(DataExtent extent)
Retrieves all the domain objects of type T. |
T |
ConvenienceGenericJpaDao.refresh(T entity,
DataExtent extent)
Re-reads the state of the given domain object from the underlying store. |
T |
GenericJpaDao.refresh(T entity,
DataExtent extent)
Re-reads the state of the given domain object from the underlying store. |
T |
ConvenienceGenericJpaDao.reload(T entity,
DataExtent extent)
Re-reads the state of the given domain object from the undermost store (eg. the database). |
T |
GenericJpaDao.reload(T entity,
DataExtent extent)
Re-reads the state of the given domain object from the undermost store (eg. the database). |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |