Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/23/10 00:23:20 (14 years ago)
Author:
hmayr
Message:

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:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Services.Authentication Prototype/Service/Provider/HeuristicLabRoleProvider.cs

    r3932 r3939  
    55using System.Web.Security;
    66
    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         }
     7namespace Service.Provider {
     8  class HeuristicLabRoleProvider : RoleProvider {
     9    public override void AddUsersToRoles(string[] usernames, string[] roleNames) {
     10      throw new NotImplementedException();
     11    }
    1512
    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    }
    2721
    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    }
    3225
    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    }
    3729
    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    }
    4233
    43         public override string[] GetAllRoles()
    44         {
    45             throw new NotImplementedException();
    46         }
     34    public override string[] GetAllRoles() {
     35      throw new NotImplementedException();
     36    }
    4737
    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    }
    5241
    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    }
    5745
    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    }
    6249
    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    }
    6753
    68         public override bool RoleExists(string roleName)
    69         {
    70             throw new NotImplementedException();
    71         }
     54    public override bool RoleExists(string roleName) {
     55      throw new NotImplementedException();
    7256    }
     57  }
    7358}
Note: See TracChangeset for help on using the changeset viewer.