Uses of Class
org.acegisecurity.domain.dao.PaginatedList

Packages that use PaginatedList
org.acegisecurity.domain.dao Provides the base of a data access object (DAO) persistence layer. 
org.acegisecurity.domain.hibernate Hibernate-specific implementations of the domain subproject interfaces. 
org.acegisecurity.domain.service   
 

Uses of PaginatedList in org.acegisecurity.domain.dao
 

Methods in org.acegisecurity.domain.dao that return PaginatedList
 PaginatedList<E> Dao.scroll(E value, int firstElement, int maxElements, String orderByAsc)
          Find persistent instances with properties matching those of the passed PersistableEntity.
 PaginatedList<E> Dao.scrollPopulated(E value, int firstElement, int maxElements, String orderByAsc)
          Find persistent instances with properties matching those of the passed PersistableEntity, with a guarantee the returned results will have each of the value class' immediate properties initialized.
 PaginatedList<E> Dao.scrollPopulatedWithSubclasses(E value, int firstElement, int maxElements, String orderByAsc)
          Find persistent instances with properties matching those of the passed PersistableEntity, ignoring the class of the passed PersistableEntity (useful if you pass a superclass, as you want to find all subclass instances which match).
 PaginatedList<E> Dao.scrollWithSubclasses(E value, int firstElement, int maxElements, String orderByAsc)
          Find persistent instances with properties matching those of the passed PersistableEntity, ignoring the class of the passed PersistableEntity (useful if you pass a superclass, as you want to find all subclass instances which match).
 

Uses of PaginatedList in org.acegisecurity.domain.hibernate
 

Methods in org.acegisecurity.domain.hibernate that return PaginatedList
 PaginatedList<E> DaoHibernate.scroll(E value, int firstElement, int maxElements, String orderByAsc)
           
 PaginatedList<E> DaoHibernate.scrollPopulated(E value, int firstElement, int maxElements, String orderByAsc)
           
 PaginatedList<E> DaoHibernate.scrollPopulatedWithSubclasses(E value, int firstElement, int maxElements, String orderByAsc)
           
 PaginatedList<E> DaoHibernate.scrollWithSubclasses(E value, int firstElement, int maxElements, String orderByAsc)
           
 

Uses of PaginatedList in org.acegisecurity.domain.service
 

Methods in org.acegisecurity.domain.service that return PaginatedList
 PaginatedList<E> ImmutableManagerImpl.scroll(E value, int firstElement, int maxElements)
           
 PaginatedList<E> ImmutableManager.scroll(E value, int firstElement, int maxElements)
          Find persistent instances with properties matching those of the passed PersistableEntity.
 PaginatedList<E> ImmutableManagerImpl.scrollPopulated(E value, int firstElement, int maxElements)
           
 PaginatedList<E> ImmutableManager.scrollPopulated(E value, int firstElement, int maxElements)
          Find persistent instances with properties matching those of the passed PersistableEntity, with a guarantee the returned results will have each of the value class' immediate properties initialized.
 PaginatedList<E> ImmutableManagerImpl.scrollPopulatedWithSubclasses(E value, int firstElement, int maxElements)
           
 PaginatedList<E> ImmutableManager.scrollPopulatedWithSubclasses(E value, int firstElement, int maxElements)
          Find persistent instances with properties matching those of the passed PersistableEntity, ignoring the class of the passed PersistableEntity (useful if you pass a superclass, as you want to find all subclass instances which match).
 PaginatedList<E> ImmutableManagerImpl.scrollWithSubclasses(E value, int firstElement, int maxElements)
           
 PaginatedList<E> ImmutableManager.scrollWithSubclasses(E value, int firstElement, int maxElements)
          Find persistent instances with properties matching those of the passed PersistableEntity, ignoring the class of the passed PersistableEntity (useful if you pass a superclass, as you want to find all subclass instances which match).
 



Copyright © 2004-2005 Acegi Technology Pty Limited. All Rights Reserved.