Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Security.Server-3.2/3.2/SecurityServer.cs @ 1713

Last change on this file since 1713 was 1713, checked in by asimon, 15 years ago

Server for Security (ticket #537)

File size: 747 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.ComponentModel;
4using System.Data;
5using System.Drawing;
6using System.Linq;
7using System.Text;
8using System.Windows.Forms;
9
10namespace HeuristicLab.Security.Server {
11  public partial class SecurityServer : Form {
12    public SecurityServer(Dictionary<string, Uri> baseAddrDict) {
13      InitializeComponent();
14      Uri uri;
15      baseAddrDict.TryGetValue(SecurityServerApplication.STR_PermissionManager, out uri);
16      if (uri != null)
17        this.labelPermission.Text = uri.ToString();
18      baseAddrDict.TryGetValue(SecurityServerApplication.STR_SecurityManager, out uri);
19      if (uri != null)
20        this.labelSecurity.Text = uri.ToString();
21    }
22  }
23}
Note: See TracBrowser for help on using the repository browser.