2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / class / System.Web / System.Web.Security / SqlMembershipProvider.cs
index cc6ab319f6b34f018594983727c7e2762d6c3d17..3437bd31a26ddf7ddff5dca5db4ff35e58ddad59 100644 (file)
@@ -3,38 +3,60 @@
 //
 // Authors:
 //     Ben Maurer (bmaurer@users.sourceforge.net)
+//     Lluis Sanchez Gual (lluis@novell.com)
 //
 // (C) 2003 Ben Maurer
 //
 
-#if NET_1_2
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+// 
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+// 
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+
+#if NET_2_0
 using System.Collections;
 using System.Collections.Specialized;
 using System.Text;
 
 namespace System.Web.Security {
-       public class SqlMembershipProvider : IMembershipProvider {
+       public class SqlMembershipProvider : MembershipProvider {
                
                [MonoTODO]
-               public virtual bool ChangePassword (string username, string oldPwd, string newPwd)
+               public override bool ChangePassword (string username, string oldPwd, string newPwd)
                {
                        throw new NotImplementedException ();
                }
                
                [MonoTODO]
-               public virtual bool ChangePasswordQuestionAndAnswer (string username, string password, string newPwdQuestion, string newPwdAnswer)
+               public override bool ChangePasswordQuestionAndAnswer (string username, string password, string newPwdQuestion, string newPwdAnswer)
                {
                        throw new NotImplementedException ();
                }
                
                [MonoTODO]
-               public virtual MembershipUser CreateUser (string username, string password, string email,  out MembershipCreateStatus status)
+               public override MembershipUser CreateUser (string username, string password, string email, string pwdQuestion, string pwdAnswer, bool isApproved, out MembershipCreateStatus status)
                {
                        throw new NotImplementedException ();
                }
                
                [MonoTODO]
-               public virtual bool DeleteUser (string username)
+               public override bool DeleteUser (string username, bool deleteAllRelatedData)
                {
                        throw new NotImplementedException ();
                }
@@ -46,82 +68,89 @@ namespace System.Web.Security {
                }
                
                [MonoTODO]
-               public MembershipUserCollection GetAllUsers ()
+               public override MembershipUserCollection FindUsersByEmail (string emailToMatch, int pageIndex, int pageSize, out int totalRecords)
                {
                        throw new NotImplementedException ();
                }
                
                [MonoTODO]
-               public int GetNumberOfUsersOnline ()
+               public override MembershipUserCollection FindUsersByName (string nameToMatch, int pageIndex, int pageSize, out int totalRecords)
                {
                        throw new NotImplementedException ();
                }
                
                [MonoTODO]
-               public virtual string GetPassword (string username, string answer)
+               public override MembershipUserCollection GetAllUsers (int pageIndex, int pageSize, out int totalRecords)
                {
                        throw new NotImplementedException ();
                }
                
                [MonoTODO]
-               public virtual MembershipUser GetUser (string username, bool userIsOnline)
+               public override int GetNumberOfUsersOnline ()
                {
                        throw new NotImplementedException ();
                }
                
                [MonoTODO]
-               public virtual string GetUserNameByEmail (string email)
+               public override string GetPassword (string username, string answer)
                {
                        throw new NotImplementedException ();
                }
                
                [MonoTODO]
-               public virtual void Initialize (string name, NameValueCollection config)
+               public override MembershipUser GetUser (string username, bool userIsOnline)
                {
                        throw new NotImplementedException ();
                }
                
                [MonoTODO]
-               public virtual string ResetPassword (string username, string answer)
+               public override string GetUserNameByEmail (string email)
                {
                        throw new NotImplementedException ();
                }
                
                [MonoTODO]
-               public virtual void UpdateUser (MembershipUser user)
+               public override void Initialize (string name, NameValueCollection config)
                {
                        throw new NotImplementedException ();
                }
                
                [MonoTODO]
-               public virtual bool ValidateUser (string username, string password)
+               public override string ResetPassword (string username, string answer)
                {
                        throw new NotImplementedException ();
                }
                
                [MonoTODO]
-               public string ApplicationName {
-                       get { throw new NotImplementedException (); }
-                       set { throw new NotImplementedException (); }
+               public override void UpdateUser (MembershipUser user)
+               {
+                       throw new NotImplementedException ();
                }
                
                [MonoTODO]
-               public virtual string Description {
+               public override bool ValidateUser (string username, string password)
+               {
+                       throw new NotImplementedException ();
+               }
+               
+               [MonoTODO]
+               public override string ApplicationName {
                        get { throw new NotImplementedException (); }
+                       set { throw new NotImplementedException (); }
                }
                
                [MonoTODO]
-               public virtual bool EnablePasswordReset {
+               public virtual string Description {
                        get { throw new NotImplementedException (); }
                }
                
                [MonoTODO]
-               public virtual bool EnablePasswordRetrieval {
+               public override bool EnablePasswordReset {
                        get { throw new NotImplementedException (); }
                }
                
                [MonoTODO]
-               public virtual string Name {
+               public override bool EnablePasswordRetrieval {
                        get { throw new NotImplementedException (); }
                }
                
@@ -131,7 +160,7 @@ namespace System.Web.Security {
                }
                
                [MonoTODO]
-               public virtual bool RequiresQuestionAndAnswer {
+               public override bool RequiresQuestionAndAnswer {
                        get { throw new NotImplementedException (); }
                }