Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Services.Authentication Prototype/Service/Provider/HeuristicLabRoleProvider.cs @ 3943

Last change on this file since 3943 was 3943, checked in by hmayr, 14 years ago

following changes (#1046):

  • extended DatabaseUtil.cs
  • extended HeuristicLabUser.cs
  • created HeuristicLabUserTest.cs
  • created AbstractHeuristicLabTest.cs
  • implemented a demo method in HeuristicLabMembershipProvider.cs to show usage of HeuristicLabUser.cs and DatabaseUtil.cs
File size: 1.5 KB
Line 
1using System;
2using System.Web.Security;
3using Persistence;
4
5namespace Service.Provider {
6  class HeuristicLabRoleProvider : RoleProvider {
7    public override void AddUsersToRoles(string[] usernames, string[] roleNames) {
8      throw new NotImplementedException();
9    }
10
11    public override string ApplicationName {
12      get {
13        throw new NotImplementedException();
14      }
15      set {
16        throw new NotImplementedException();
17      }
18    }
19
20    public override void CreateRole(string roleName) {
21      throw new NotImplementedException();
22    }
23
24    public override bool DeleteRole(string roleName, bool throwOnPopulatedRole) {
25      throw new NotImplementedException();
26    }
27
28    public override string[] FindUsersInRole(string roleName, string usernameToMatch) {
29      throw new NotImplementedException();
30    }
31
32    public override string[] GetAllRoles() {
33      throw new NotImplementedException();
34    }
35
36    public override string[] GetRolesForUser(string username) {
37      throw new NotImplementedException();
38    }
39
40    public override string[] GetUsersInRole(string roleName) {
41      throw new NotImplementedException();
42    }
43
44    public override bool IsUserInRole(string username, string roleName) {
45      throw new NotImplementedException();
46    }
47
48    public override void RemoveUsersFromRoles(string[] usernames, string[] roleNames) {
49      throw new NotImplementedException();
50    }
51
52    public override bool RoleExists(string roleName) {
53      throw new NotImplementedException();
54    }
55  }
56}
Note: See TracBrowser for help on using the repository browser.