* @package generis */ interface core_kernel_api_Api { // --- OPERATIONS --- /** * Short description of method logIn * * @access public * @author firstname and lastname of author, * @param string login * @param string password * @param string module * @param boolean role * @return boolean */ public function logIn($login, $password, $module, $role); /** * Short description of method logOut * * @access public * @author firstname and lastname of author, * @return boolean */ public function logOut(); } /* end of interface core_kernel_api_Api */