Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Security.Server/3.3/SecurityServer.cs @ 4296

Last change on this file since 4296 was 4171, checked in by cneumuel, 14 years ago

corrected all AssemblyInfo.frame (removed BuildDate and changed PluginVersion to "3.3.0.0"). Also deleted unused HL.Hive.Server.Scheduler and obsolete HL.Hive.Engine

File size: 777 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, String> baseAddrDict) {
13      InitializeComponent();
14      String uri;
15      baseAddrDict.TryGetValue(HeuristicLabSecurityServerApplication.STR_PermissionManager, out uri);
16      if (uri != null)
17        this.labelPermission.Text = uri.ToString();
18      baseAddrDict.TryGetValue(HeuristicLabSecurityServerApplication.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.