diff options
author | xue <> | 2006-05-18 11:54:29 +0000 |
---|---|---|
committer | xue <> | 2006-05-18 11:54:29 +0000 |
commit | 9f34aa1cfd8d34d23e76d2717bad22394813bbdf (patch) | |
tree | 910a422692fd083fccabcafbe20fcca7db08aac6 /framework/Security/IUserManager.php | |
parent | e1d9e11577c1cea63e72a20a98cd9b6acc8e5ba7 (diff) |
refactored TUserManager and TAuthManager so that they are easier to be extended
Diffstat (limited to 'framework/Security/IUserManager.php')
-rw-r--r-- | framework/Security/IUserManager.php | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/framework/Security/IUserManager.php b/framework/Security/IUserManager.php new file mode 100644 index 00000000..b1a6b67c --- /dev/null +++ b/framework/Security/IUserManager.php @@ -0,0 +1,46 @@ +<?php
+/**
+ * IUserManager interface file
+ *
+ * @author Qiang Xue <qiang.xue@gmail.com>
+ * @link http://www.pradosoft.com/
+ * @copyright Copyright © 2005 PradoSoft
+ * @license http://www.pradosoft.com/license/
+ * @version $Revision: $ $Date: $
+ * @package System.Security
+ */
+
+/**
+ * IUserManager interface
+ *
+ * IUserManager specifies the interface that must be implemented by
+ * a user manager class if it is to be used together with {@link TAuthManager}
+ * and {@link TUser}.
+ *
+ * @author Qiang Xue <qiang.xue@gmail.com>
+ * @version $Revision: $ $Date: $
+ * @package System.Security
+ * @since 3.0
+ */
+interface IUserManager
+{
+ /**
+ * @return string name for a guest user.
+ */
+ public function getGuestName();
+ /**
+ * Returns a user instance given the user name.
+ * @param string user name, null if it is a guest.
+ * @return TUser the user instance, null if the specified username is not in the user database.
+ */
+ public function getUser($username=null);
+ /**
+ * Validates if the username and password are correct.
+ * @param string user name
+ * @param string password
+ * @return boolean true if validation is successful, false otherwise.
+ */
+ public function validateUser($username,$password);
+}
+
+?>
\ No newline at end of file |