1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
|
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Tango Observables Generator
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated. Do not modify!
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.ComponentModel;
namespace Tango.BL.Enumerations
{
public enum Permissions
{
/// <summary>
/// (Allows loading the Users & Roles module in machine studio)
/// </summary>
[Description("Allows loading the Users & Roles module in machine studio")]
RunUsersAndRolesModule = 10,
/// <summary>
/// (Allows loading the database module in Machine Studio)
/// </summary>
[Description("Allows loading the database module in Machine Studio")]
RunDataBaseModule = 2,
/// <summary>
/// (Allows loading the machine designer module in Machine Studio)
/// </summary>
[Description("Allows loading the machine designer module in Machine Studio")]
RunMachineDesignerModule = 4,
/// <summary>
/// (Allows loading the ColorLab module in Machine Studio)
/// </summary>
[Description("Allows loading the ColorLab module in Machine Studio")]
RunColorLabModule = 9,
/// <summary>
/// (Allows the execution of Machine Studio)
/// </summary>
[Description("Allows the execution of Machine Studio")]
RunMachineStudio = 6,
/// <summary>
/// (Allows publishing of new Machine Studio versions.)
/// </summary>
[Description("Allows publishing of new Machine Studio versions.")]
PublishMachineStudioVersions = 7,
/// <summary>
/// (Allows loading the stubs module in machine studio)
/// </summary>
[Description("Allows loading the stubs module in machine studio")]
RunStubsModule = 8,
/// <summary>
/// (Allows running the PPC software.)
/// </summary>
[Description("Allows running the PPC software.")]
RunPPC = 15,
/// <summary>
/// (Allows loading the tech board module in Machine Studio)
/// </summary>
[Description("Allows loading the tech board module in Machine Studio")]
RunTechBoardModule = 0,
/// <summary>
/// (Allows loading the research module in Machine Studio)
/// </summary>
[Description("Allows loading the research module in Machine Studio")]
RunResearchModule = 1,
/// <summary>
/// (Allows loading the synchronization module in machine studio)
/// </summary>
[Description("Allows loading the synchronization module in machine studio")]
RunSynchronizationModule = 3,
/// <summary>
/// (Allows loading the data capture module in Machine Studio)
/// </summary>
[Description("Allows loading the data capture module in Machine Studio")]
RunDataCaptureModule = 5,
/// <summary>
/// (Allows openning the machine studio developer console)
/// </summary>
[Description("Allows openning the machine studio developer console")]
RunDeveloperConsole = 11,
/// <summary>
/// (Allows running the statistics module in Machine Studio.)
/// </summary>
[Description("Allows running the statistics module in Machine Studio.")]
RunStatisticsModule = 16,
/// <summary>
/// (Allows loading the RML module in Machine Studio)
/// </summary>
[Description("Allows loading the RML module in Machine Studio")]
RunRMLModule = 14,
/// <summary>
/// (Allows running the logging module in Machine Studio.)
/// </summary>
[Description("Allows running the logging module in Machine Studio.")]
RunLoggingModule = 17,
/// <summary>
/// (Allows running the storage module in Machine Studio.)
/// </summary>
[Description("Allows running the storage module in Machine Studio.")]
RunMachineStorageModule = 18,
/// <summary>
/// (Allows running the hardware versions module in Machine Studio.)
/// </summary>
[Description("Allows running the hardware versions module in Machine Studio.")]
RunHardwareVersionsModule = 19,
/// <summary>
/// (Allows running the ColorCapture module in Machine Studio)
/// </summary>
[Description("Allows running the ColorCapture module in Machine Studio")]
RunColorCaptureModule = 24,
/// <summary>
/// (Allows loading the color catalogs module in machine studio)
/// </summary>
[Description("Allows loading the color catalogs module in machine studio")]
RunCatalogsModule = 25,
/// <summary>
/// (Allows publishing of new PPC application versions.)
/// </summary>
[Description("Allows publishing of new PPC application versions.")]
PublishPPCVersions = 23,
}
}
|