- Timestamp:
- 06/23/10 00:23:20 (15 years ago)
- Location:
- branches/HeuristicLab.Services.Authentication Prototype/Service/Provider
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Services.Authentication Prototype/Service/Provider/HeuristicLabMembershipProvider.cs
r3932 r3939 5 5 using System.Web.Security; 6 6 7 namespace Service.Provider 8 { 9 class HeuristicLabMembershipProvider : MembershipProvider 10 { 11 public override string ApplicationName 12 { 13 get 14 { 15 throw new NotImplementedException(); 16 } 17 set 18 { 19 throw new NotImplementedException(); 20 } 21 } 7 namespace Service.Provider { 8 class HeuristicLabMembershipProvider : MembershipProvider { 9 public override string ApplicationName { 10 get { 11 throw new NotImplementedException(); 12 } 13 set { 14 throw new NotImplementedException(); 15 } 16 } 22 17 23 public override bool ChangePassword(string username, string oldPassword, string newPassword) 24 { 25 throw new NotImplementedException(); 26 } 18 public override bool ChangePassword(string username, string oldPassword, string newPassword) { 19 throw new NotImplementedException(); 20 } 27 21 28 public override bool ChangePasswordQuestionAndAnswer(string username, string password, string newPasswordQuestion, string newPasswordAnswer) 29 { 30 throw new NotImplementedException(); 31 } 22 public override bool ChangePasswordQuestionAndAnswer(string username, string password, string newPasswordQuestion, string newPasswordAnswer) { 23 throw new NotImplementedException(); 24 } 32 25 33 public override MembershipUser CreateUser(string username, string password, string email, string passwordQuestion, string passwordAnswer, bool isApproved, object providerUserKey, out MembershipCreateStatus status) 34 { 35 throw new NotImplementedException(); 36 } 26 public override MembershipUser CreateUser(string username, string password, string email, string passwordQuestion, string passwordAnswer, bool isApproved, object providerUserKey, out MembershipCreateStatus status) { 27 throw new NotImplementedException(); 28 } 37 29 38 public override bool DeleteUser(string username, bool deleteAllRelatedData) 39 { 40 throw new NotImplementedException(); 41 } 30 public override bool DeleteUser(string username, bool deleteAllRelatedData) { 31 throw new NotImplementedException(); 32 } 42 33 43 public override bool EnablePasswordReset 44 { 45 get { throw new NotImplementedException(); } 46 } 34 public override bool EnablePasswordReset { 35 get { throw new NotImplementedException(); } 36 } 47 37 48 public override bool EnablePasswordRetrieval 49 { 50 get { throw new NotImplementedException(); } 51 } 38 public override bool EnablePasswordRetrieval { 39 get { throw new NotImplementedException(); } 40 } 52 41 53 public override MembershipUserCollection FindUsersByEmail(string emailToMatch, int pageIndex, int pageSize, out int totalRecords) 54 { 55 throw new NotImplementedException(); 56 } 42 public override MembershipUserCollection FindUsersByEmail(string emailToMatch, int pageIndex, int pageSize, out int totalRecords) { 43 throw new NotImplementedException(); 44 } 57 45 58 public override MembershipUserCollection FindUsersByName(string usernameToMatch, int pageIndex, int pageSize, out int totalRecords) 59 { 60 throw new NotImplementedException(); 61 } 46 public override MembershipUserCollection FindUsersByName(string usernameToMatch, int pageIndex, int pageSize, out int totalRecords) { 47 throw new NotImplementedException(); 48 } 62 49 63 public override MembershipUserCollection GetAllUsers(int pageIndex, int pageSize, out int totalRecords) 64 { 65 throw new NotImplementedException(); 66 } 50 public override MembershipUserCollection GetAllUsers(int pageIndex, int pageSize, out int totalRecords) { 51 throw new NotImplementedException(); 52 } 67 53 68 public override int GetNumberOfUsersOnline() 69 { 70 throw new NotImplementedException(); 71 } 54 public override int GetNumberOfUsersOnline() { 55 throw new NotImplementedException(); 56 } 72 57 73 public override string GetPassword(string username, string answer) 74 { 75 throw new NotImplementedException(); 76 } 58 public override string GetPassword(string username, string answer) { 59 throw new NotImplementedException(); 60 } 77 61 78 public override MembershipUser GetUser(string username, bool userIsOnline) 79 { 80 throw new NotImplementedException(); 81 } 62 public override MembershipUser GetUser(string username, bool userIsOnline) { 63 throw new NotImplementedException(); 64 } 82 65 83 public override MembershipUser GetUser(object providerUserKey, bool userIsOnline) 84 { 85 throw new NotImplementedException(); 86 } 66 public override MembershipUser GetUser(object providerUserKey, bool userIsOnline) { 67 throw new NotImplementedException(); 68 } 87 69 88 public override string GetUserNameByEmail(string email) 89 { 90 throw new NotImplementedException(); 91 } 70 public override string GetUserNameByEmail(string email) { 71 throw new NotImplementedException(); 72 } 92 73 93 public override int MaxInvalidPasswordAttempts 94 { 95 get { throw new NotImplementedException(); } 96 } 74 public override int MaxInvalidPasswordAttempts { 75 get { throw new NotImplementedException(); } 76 } 97 77 98 public override int MinRequiredNonAlphanumericCharacters 99 { 100 get { throw new NotImplementedException(); } 101 } 78 public override int MinRequiredNonAlphanumericCharacters { 79 get { throw new NotImplementedException(); } 80 } 102 81 103 public override int MinRequiredPasswordLength 104 { 105 get { throw new NotImplementedException(); } 106 } 82 public override int MinRequiredPasswordLength { 83 get { throw new NotImplementedException(); } 84 } 107 85 108 public override int PasswordAttemptWindow 109 { 110 get { throw new NotImplementedException(); } 111 } 86 public override int PasswordAttemptWindow { 87 get { throw new NotImplementedException(); } 88 } 112 89 113 public override MembershipPasswordFormat PasswordFormat 114 { 115 get { throw new NotImplementedException(); } 116 } 90 public override MembershipPasswordFormat PasswordFormat { 91 get { throw new NotImplementedException(); } 92 } 117 93 118 public override string PasswordStrengthRegularExpression 119 { 120 get { throw new NotImplementedException(); } 121 } 94 public override string PasswordStrengthRegularExpression { 95 get { throw new NotImplementedException(); } 96 } 122 97 123 public override bool RequiresQuestionAndAnswer 124 { 125 get { throw new NotImplementedException(); } 126 } 98 public override bool RequiresQuestionAndAnswer { 99 get { throw new NotImplementedException(); } 100 } 127 101 128 public override bool RequiresUniqueEmail 129 { 130 get { throw new NotImplementedException(); } 131 } 102 public override bool RequiresUniqueEmail { 103 get { throw new NotImplementedException(); } 104 } 132 105 133 public override string ResetPassword(string username, string answer) 134 { 135 throw new NotImplementedException(); 136 } 106 public override string ResetPassword(string username, string answer) { 107 throw new NotImplementedException(); 108 } 137 109 138 public override bool UnlockUser(string userName) 139 { 140 throw new NotImplementedException(); 141 } 110 public override bool UnlockUser(string userName) { 111 throw new NotImplementedException(); 112 } 142 113 143 public override void UpdateUser(MembershipUser user) 144 { 145 throw new NotImplementedException(); 146 } 114 public override void UpdateUser(MembershipUser user) { 115 throw new NotImplementedException(); 116 } 147 117 148 public override bool ValidateUser(string username, string password) 149 { 150 throw new NotImplementedException(); 151 } 118 public override bool ValidateUser(string username, string password) { 119 throw new NotImplementedException(); 152 120 } 121 } 153 122 } -
branches/HeuristicLab.Services.Authentication Prototype/Service/Provider/HeuristicLabRoleProvider.cs
r3932 r3939 5 5 using System.Web.Security; 6 6 7 namespace Service.Provider 8 { 9 class HeuristicLabRoleProvider : RoleProvider 10 { 11 public override void AddUsersToRoles(string[] usernames, string[] roleNames) 12 { 13 throw new NotImplementedException(); 14 } 7 namespace Service.Provider { 8 class HeuristicLabRoleProvider : RoleProvider { 9 public override void AddUsersToRoles(string[] usernames, string[] roleNames) { 10 throw new NotImplementedException(); 11 } 15 12 16 public override string ApplicationName 17 { 18 get 19 { 20 throw new NotImplementedException(); 21 } 22 set 23 { 24 throw new NotImplementedException(); 25 } 26 } 13 public override string ApplicationName { 14 get { 15 throw new NotImplementedException(); 16 } 17 set { 18 throw new NotImplementedException(); 19 } 20 } 27 21 28 public override void CreateRole(string roleName) 29 { 30 throw new NotImplementedException(); 31 } 22 public override void CreateRole(string roleName) { 23 throw new NotImplementedException(); 24 } 32 25 33 public override bool DeleteRole(string roleName, bool throwOnPopulatedRole) 34 { 35 throw new NotImplementedException(); 36 } 26 public override bool DeleteRole(string roleName, bool throwOnPopulatedRole) { 27 throw new NotImplementedException(); 28 } 37 29 38 public override string[] FindUsersInRole(string roleName, string usernameToMatch) 39 { 40 throw new NotImplementedException(); 41 } 30 public override string[] FindUsersInRole(string roleName, string usernameToMatch) { 31 throw new NotImplementedException(); 32 } 42 33 43 public override string[] GetAllRoles() 44 { 45 throw new NotImplementedException(); 46 } 34 public override string[] GetAllRoles() { 35 throw new NotImplementedException(); 36 } 47 37 48 public override string[] GetRolesForUser(string username) 49 { 50 throw new NotImplementedException(); 51 } 38 public override string[] GetRolesForUser(string username) { 39 throw new NotImplementedException(); 40 } 52 41 53 public override string[] GetUsersInRole(string roleName) 54 { 55 throw new NotImplementedException(); 56 } 42 public override string[] GetUsersInRole(string roleName) { 43 throw new NotImplementedException(); 44 } 57 45 58 public override bool IsUserInRole(string username, string roleName) 59 { 60 throw new NotImplementedException(); 61 } 46 public override bool IsUserInRole(string username, string roleName) { 47 throw new NotImplementedException(); 48 } 62 49 63 public override void RemoveUsersFromRoles(string[] usernames, string[] roleNames) 64 { 65 throw new NotImplementedException(); 66 } 50 public override void RemoveUsersFromRoles(string[] usernames, string[] roleNames) { 51 throw new NotImplementedException(); 52 } 67 53 68 public override bool RoleExists(string roleName) 69 { 70 throw new NotImplementedException(); 71 } 54 public override bool RoleExists(string roleName) { 55 throw new NotImplementedException(); 72 56 } 57 } 73 58 }
Note: See TracChangeset
for help on using the changeset viewer.