All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.appfuse.dao.LookupDao Maven / Gradle / Ivy

There is a newer version: 3.5.0
Show newest version
package org.appfuse.dao;

import org.appfuse.model.Role;

import java.util.List;

/**
 * Lookup Data Access Object (GenericDao) interface.  This is used to lookup values in
 * the database (i.e. for drop-downs).
 *
 * @author Matt Raible
 */
public interface LookupDao {
    //~ Methods ================================================================

    /**
     * Returns all Roles ordered by name
     * @return populated list of roles
     */
    List getRoles();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy