Moodle  2.2.1
http://www.collinsharper.com
C:/xampp/htdocs/moodle/lib/zend/Zend/Amf/Auth/Abstract.php
Go to the documentation of this file.
00001 <?php
00023 require_once 'Zend/Auth/Adapter/Interface.php';
00024 
00033 abstract class Zend_Amf_Auth_Abstract implements Zend_Auth_Adapter_Interface
00034 {
00035     protected $_username;
00036     protected $_password;
00037 
00038     public function setCredentials($username, $password) {
00039         $this->_username = $username;
00040         $this->_password = $password;
00041     }
00042 }
 All Data Structures Namespaces Files Functions Variables Enumerations