- generateQuery(String, Class, EntityManager, Analyzer) - Static method in class org.appfuse.dao.jpa.HibernateSearchJpaTools
-
Generates a lucene query to search for a given term in all the indexed fields of a class
- GenericDao<T,PK extends Serializable> - Interface in org.appfuse.dao
-
Generic DAO (Data Access Object) with common methods to CRUD POJOs.
- GenericDaoJpa<T,PK extends Serializable> - Class in org.appfuse.dao.jpa
-
This class serves as the Base class for all other DAOs - namely to hold
common CRUD methods that they might all use.
- GenericDaoJpa(Class<T>) - Constructor for class org.appfuse.dao.jpa.GenericDaoJpa
-
Constructor that takes in a class to see which type of entity to persist.
- GenericDaoJpa(Class<T>, EntityManager) - Constructor for class org.appfuse.dao.jpa.GenericDaoJpa
-
Constructor that takes in a class to see which type of entity to persist.
- get(PK) - Method in interface org.appfuse.dao.GenericDao
-
Generic method to get an object based on class and identifier.
- get(PK) - Method in class org.appfuse.dao.jpa.GenericDaoJpa
-
Generic method to get an object based on class and identifier.
- getAll() - Method in interface org.appfuse.dao.GenericDao
-
Generic method used to get all objects of a particular type.
- getAll() - Method in class org.appfuse.dao.jpa.GenericDaoJpa
-
Generic method used to get all objects of a particular type.
- getAllDistinct() - Method in interface org.appfuse.dao.GenericDao
-
Gets all records without duplicates.
- getAllDistinct() - Method in class org.appfuse.dao.jpa.GenericDaoJpa
-
Gets all records without duplicates.
- getEntityManager() - Method in class org.appfuse.dao.jpa.GenericDaoJpa
-
- getRoleByName(String) - Method in class org.appfuse.dao.jpa.RoleDaoJpa
-
Gets role information based on rolename
- getRoleByName(String) - Method in interface org.appfuse.dao.RoleDao
-
Gets role information based on rolename
- getRoles() - Method in class org.appfuse.dao.jpa.LookupDaoJpa
-
Returns all Roles ordered by name
- getRoles() - Method in interface org.appfuse.dao.LookupDao
-
Returns all Roles ordered by name
- getUserPassword(Long) - Method in class org.appfuse.dao.jpa.UserDaoJpa
-
Retrieves the password in DB for a user
- getUserPassword(Long) - Method in interface org.appfuse.dao.UserDao
-
Retrieves the password in DB for a user
- getUsers() - Method in class org.appfuse.dao.jpa.UserDaoJpa
-
Gets a list of users ordered by the uppercase version of their username.
- getUsers() - Method in interface org.appfuse.dao.UserDao
-
Gets a list of users ordered by the uppercase version of their username.
- rb - Variable in class org.appfuse.dao.BaseDaoTestCase
-
ResourceBundle loaded from src/test/resources/${package.name}/ClassName.properties (if exists)
- reindex() - Method in interface org.appfuse.dao.GenericDao
-
Generic method to regenerate full text index of the persistent class T
- reindex() - Method in class org.appfuse.dao.jpa.GenericDaoJpa
-
Generic method to regenerate full text index of the persistent class T
- reindex(Class, EntityManager) - Static method in class org.appfuse.dao.jpa.HibernateSearchJpaTools
-
Regenerates the index for a given class
- reindexAll(boolean) - Method in interface org.appfuse.dao.GenericDao
-
Generic method to regenerate full text index of all indexed classes
- reindexAll(boolean) - Method in class org.appfuse.dao.jpa.GenericDaoJpa
-
Generic method to regenerate full text index of all indexed classes
- reindexAll(boolean, EntityManager) - Static method in class org.appfuse.dao.jpa.HibernateSearchJpaTools
-
Regenerates all the indexed class indexes
- remove(T) - Method in interface org.appfuse.dao.GenericDao
-
Generic method to delete an object
- remove(PK) - Method in interface org.appfuse.dao.GenericDao
-
Generic method to delete an object
- remove(T) - Method in class org.appfuse.dao.jpa.GenericDaoJpa
-
Generic method to delete an object
- remove(PK) - Method in class org.appfuse.dao.jpa.GenericDaoJpa
-
Generic method to delete an object
- removeRole(String) - Method in class org.appfuse.dao.jpa.RoleDaoJpa
-
Removes a role from the database by name
- removeRole(String) - Method in interface org.appfuse.dao.RoleDao
-
Removes a role from the database by name
- RoleDao - Interface in org.appfuse.dao
-
Role Data Access Object (DAO) interface.
- RoleDaoJpa - Class in org.appfuse.dao.jpa
-
This class interacts with Spring's HibernateTemplate to save/delete and
retrieve Role objects.
- RoleDaoJpa() - Constructor for class org.appfuse.dao.jpa.RoleDaoJpa
-
Constructor to create a Generics-based version using Role as the entity