- GenericDao<T,PK extends Serializable> - Interface in org.appfuse.dao
-
Generic DAO (Data Access Object) with common methods to CRUD POJOs.
- GenericDaoHibernate<T,PK extends Serializable> - Class in org.appfuse.dao.hibernate
-
This class serves as the Base class for all other DAOs - namely to hold
common CRUD methods that they might all use.
- GenericDaoHibernate(Class<T>) - Constructor for class org.appfuse.dao.hibernate.GenericDaoHibernate
-
Constructor that takes in a class to see which type of entity to persist.
- GenericDaoHibernate(Class<T>, SessionFactory) - Constructor for class org.appfuse.dao.hibernate.GenericDaoHibernate
-
Constructor that takes in a class and sessionFactory for easy creation of DAO.
- 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.hibernate.GenericDaoHibernate
-
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.hibernate.GenericDaoHibernate
-
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.hibernate.GenericDaoHibernate
-
Gets all records without duplicates.
- getRoleByName(String) - Method in class org.appfuse.dao.hibernate.RoleDaoHibernate
-
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.hibernate.LookupDaoHibernate
-
Returns all Roles ordered by name
- getRoles() - Method in interface org.appfuse.dao.LookupDao
-
Returns all Roles ordered by name
- getSession() - Method in class org.appfuse.dao.hibernate.GenericDaoHibernate
-
- getSessionFactory() - Method in class org.appfuse.dao.hibernate.GenericDaoHibernate
-
- getUserPassword(Long) - Method in class org.appfuse.dao.hibernate.UserDaoHibernate
-
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.hibernate.UserDaoHibernate
-
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.hibernate.GenericDaoHibernate
-
Generic method to regenerate full text index of the persistent class T
- 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.hibernate.GenericDaoHibernate
-
Generic method to regenerate full text index of all indexed classes
- 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.hibernate.GenericDaoHibernate
-
Generic method to delete an object
- remove(PK) - Method in class org.appfuse.dao.hibernate.GenericDaoHibernate
-
Generic method to delete an object
- removeRole(String) - Method in class org.appfuse.dao.hibernate.RoleDaoHibernate
-
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.
- RoleDaoHibernate - Class in org.appfuse.dao.hibernate
-
This class interacts with hibernate session to save/delete and
retrieve Role objects.
- RoleDaoHibernate() - Constructor for class org.appfuse.dao.hibernate.RoleDaoHibernate
-
Constructor to create a Generics-based version using Role as the entity