Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Server.Core/3.2/PermissiveSecurityConstants.cs @ 1763

Last change on this file since 1763 was 1763, checked in by mbecirov, 15 years ago

#586 added some actions

File size: 2.7 KB
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5
6namespace HeuristicLab.Hive.Server.Core {
7  /// <summary>
8  /// PermissiveSecurityAction contains the GUIDs for
9  /// </summary>
10  public static class PermissiveSecurityAction {
11    public static Guid Add_Job {
12      get { return new Guid("A477BEA9-9C05-477f-AD9E-F76C510DDB0B"); }
13    }
14
15    public static Guid Get_AllJobs {
16      get { return new Guid("7FC39A7C-1807-4d76-B847-F0DE9DF0275E"); }
17    }
18
19    public static Guid Get_LastJobResult {
20      get { return new Guid("79E8705E-23F5-4157-A3E5-BBE6CE2C6C01"); }
21    }
22
23    public static Guid Get_AllJobResults {
24      get { return new Guid("F72B9338-22A4-4870-B6A3-14BA38DF3BEF"); }
25    }
26
27    public static Guid Remove_Job {
28      get { return new Guid("FFDB7636-4A31-44b7-B843-289B2E8808BD"); }
29    }
30
31    public static Guid Abort_Job {
32      get { return new Guid("DFACD3D6-E85E-42b7-B4AE-0FB33C598F24"); }
33    }
34
35    public static Guid Request_Snapshot {
36      get { return new Guid("40D41BAA-6495-42c6-82B6-9A7CDB1F30EF"); }
37    }
38
39    public static Guid List_AllClients {
40      get { return new Guid("D8EAC687-BE9A-4266-B410-35674A374462"); }
41    }
42
43    public static Guid List_AllClientGroups {
44      get { return new Guid("29FACE0C-A1CA-428b-A757-7FAABD74AFB8"); }
45    }
46
47    public static Guid Show_Statistics {
48      get { return new Guid("FAEFF433-037E-48b7-9CC7-34C560894304"); }
49    }
50
51    public static Guid Add_ClientGroup {
52      get { return new Guid("81984753-7401-4a4b-B819-BC48BC662B0F"); }
53    }
54
55    public static Guid Add_Resource {
56      get { return new Guid("8C76C1F1-31B6-4c66-BCFF-E92EA00CABF5"); }
57    }
58
59    public static Guid Delete_Resource {
60      get { return new Guid("EC2362E0-0781-493f-8688-76F3CDFEF339"); }
61    }
62
63    public static Guid Add_User {
64      get { return new Guid("4FE34091-6674-4c24-BE2E-8AE0DAAAD29C"); }
65    }
66
67    public static Guid Delete_User {
68      get { return new Guid("835CF39C-F830-4130-BBAF-E0100B2760D2"); }
69    }
70
71    public static Guid Update_User {
72      get { return new Guid("FEB4D84B-25CB-4708-8B70-3159F40D8F6E"); }
73    }
74
75    public static Guid Get_User {
76      get { return new Guid("19EF2197-F71A-44ae-9916-3F5AEEC4E463"); }
77    }
78
79    public static Guid Grant_Permission {
80      get { return new Guid("B7696208-1EA3-4675-8834-5659CD6BB5DC"); }
81    }
82
83    public static Guid Revoke_Permission {
84      get { return new Guid("357DE1A5-198E-4b90-BC55-C007D504AF65"); }
85    }
86
87    public static Guid Get_AllGroupsOfResource {
88      get { return new Guid("07436F36-E882-4aed-B787-861E4AADC5E6"); }
89    }
90  }
91}
Note: See TracBrowser for help on using the repository browser.