getAuthorizationProvider(); * * @author s.khudikyan * */ interface Org_Apache_Oodt_Balance_Interfaces_IApplicationAuthorizationProvider { /** * Constructor - Instantiate the provider * */ public function __construct(); /** * Initiate a connection to the underlying system. * * @return boolean True or false depending on the result */ public function connect(); /** * Retrieves the set of groups for specified user * * @param $username string The user for which groups will be returned * @return array An empty array or groups the user belongs to */ public function retrieveGroupsForUser( $username ); }