Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/27/10 11:16:24 (14 years ago)
Author:
mjesner
Message:

#1196

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/UserManagement/HeuristicLab.Services.Authentication/Interfaces/IAuthenticationService.cs

    r4962 r4964  
    1515        User GetUser(Guid id);
    1616
    17      
     17
     18        // IEnumerable<User> GetUsers();
     19
    1820        [OperationContract]
    1921        IEnumerable<User> GetUsers(Guid applicationId);
    2022
    2123        [OperationContract]
    22         Guid InsertUser(User user);
     24        Guid InsertUser(User user);         // => AddUser
    2325
    2426        [OperationContract]
     
    3537
    3638        [OperationContract]
    37         IEnumerable<Role> GetRolesForUser(Guid userId);
     39        IEnumerable<Role> GetRolesForUser(Guid userId);  // returnvalue = GUID
     40
     41
     42      // IsUserInRole
     43      //
    3844
    3945        #endregion
     
    4450        Role GetRole(Guid id);
    4551
    46      
     52
     53        //IEnumerable<Role> GetRoles();
    4754
    4855        [OperationContract]
     
    5057
    5158        [OperationContract]
    52         Guid InsertRole(Role role);
     59        Guid InsertRole(Role role); // Add
    5360
    5461        [OperationContract]
     
    5966
    6067        [OperationContract]
    61         IEnumerable<User> GetUsersInRole(Guid roleId);
     68        IEnumerable<User> GetUsersInRole(Guid roleId); // return = Guid
    6269
    6370        #endregion
     
    6976
    7077        [OperationContract]
    71         Guid InsertApplication(Application application);
     78        Guid InsertApplication(Application application); // ADD
    7279
    7380        [OperationContract]
Note: See TracChangeset for help on using the changeset viewer.