Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 |
|
---|
6 | namespace HeuristicLab.Hive.Server.Core {
|
---|
7 | /// <summary>
|
---|
8 | /// Holds additional information about a certain permission.
|
---|
9 | /// </summary>
|
---|
10 | public class PermissionContext {
|
---|
11 | private int _priority;
|
---|
12 | /// <summary>
|
---|
13 | /// Gets or sets the priority of this permission rule.
|
---|
14 | /// </summary>
|
---|
15 | public int Priority { get { return this._priority; } set { this._priority = value; } }
|
---|
16 |
|
---|
17 | private string _elevation;
|
---|
18 | /// <summary>
|
---|
19 | /// Gets or sets the Rights Elevation Information. (Primary Policy Context)
|
---|
20 | /// </summary>
|
---|
21 | public string Elevation { get { return this._elevation; } set { this._elevation = value; } }
|
---|
22 |
|
---|
23 | }
|
---|
24 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.