- Timestamp:
- 01/18/12 12:00:21 (13 years ago)
- Location:
- branches/ClientUserManagement/HeuristicLab.Services.Access/3.3
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ClientUserManagement/HeuristicLab.Services.Access/3.3/HeuristicLab.Services.Access-3.3.csproj
r7356 r7358 54 54 </ItemGroup> 55 55 <ItemGroup> 56 <Compile Include="AccessServiceLocator.cs" /> 56 57 <Compile Include="Convert.cs" /> 57 58 <Compile Include="DataTransfer\Client.cs" /> … … 73 74 <Compile Include="DataTransfer\UserGroupMapping.cs" /> 74 75 <Compile Include="IAccessService.cs" /> 76 <Compile Include="Interfaces\IAccessServiceLocator.cs" /> 75 77 <Compile Include="Interfaces\IRoleVerifier.cs" /> 76 78 <Compile Include="Interfaces\IUserManager.cs" /> -
branches/ClientUserManagement/HeuristicLab.Services.Access/3.3/Interfaces/IRoleVerifier.cs
r7355 r7358 20 20 #endregion 21 21 22 23 22 namespace HeuristicLab.Services.Access { 24 23 public interface IRoleVerifier { 25 24 bool IsInRole(string role); 25 bool IsInAnyRole(params string[] roles); 26 bool IsInAllRoles(params string[] roles); 27 void AuthenticateForAnyRole(params string[] roles); 28 void AuthenticateForAllRoles(params string[] roles); 26 29 } 27 30 }
Note: See TracChangeset
for help on using the changeset viewer.