Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 2950 was 1737, checked in by svonolfe, 15 years ago

Passwords are now stored in MD5 in the database (#532)

File size: 753 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(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.