Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Server.Core/3.2/Authorization/PermissionContext.cs @ 2074

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

#586: Added authorization components.

File size: 754 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5
6namespace 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.