Free cookie consent management tool by TermsFeed Policy Generator

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

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

first commit from hmayr, just minor changes (#1046)

  • formatted source code files to fit HeuristicLab standards
  • deleted old LINQ to SQL Classes
  • create LINQ to SQL Class for HeuristicLabUser (just prototype)
File size: 1.6 KB
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Web.Security;
6
7namespace Service.Provider {
8  class HeuristicLabRoleProvider : RoleProvider {
9    public override void AddUsersToRoles(string[] usernames, string[] roleNames) {
10      throw new NotImplementedException();
11    }
12
13    public override string ApplicationName {
14      get {
15        throw new NotImplementedException();
16      }
17      set {
18        throw new NotImplementedException();
19      }
20    }
21
22    public override void CreateRole(string roleName) {
23      throw new NotImplementedException();
24    }
25
26    public override bool DeleteRole(string roleName, bool throwOnPopulatedRole) {
27      throw new NotImplementedException();
28    }
29
30    public override string[] FindUsersInRole(string roleName, string usernameToMatch) {
31      throw new NotImplementedException();
32    }
33
34    public override string[] GetAllRoles() {
35      throw new NotImplementedException();
36    }
37
38    public override string[] GetRolesForUser(string username) {
39      throw new NotImplementedException();
40    }
41
42    public override string[] GetUsersInRole(string roleName) {
43      throw new NotImplementedException();
44    }
45
46    public override bool IsUserInRole(string username, string roleName) {
47      throw new NotImplementedException();
48    }
49
50    public override void RemoveUsersFromRoles(string[] usernames, string[] roleNames) {
51      throw new NotImplementedException();
52    }
53
54    public override bool RoleExists(string roleName) {
55      throw new NotImplementedException();
56    }
57  }
58}
Note: See TracBrowser for help on using the repository browser.