Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive/3.4/Administration/HiveAdministrationClient.cs @ 5599

Last change on this file since 5599 was 5599, checked in by ascheibe, 14 years ago

#1233

  • rename 'Slave' namespace to 'SlaveCore' (and assemblies etc) to avoid problems with 'Slave' class
  • use svcutil (OKB-style)
File size: 2.2 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22
23using System.Collections.Generic;
24using HeuristicLab.Common;
25using HeuristicLab.Core;
26
27namespace HeuristicLab.Clients.Hive.Administration {
28  [Item("Hive Administration", "Hive Administration")]
29  public class HiveAdministrationClient : Item {
30    public List<SlaveGroup> SlaveGroups;
31    public List<Slave> Slaves;
32    public List<string> Users;
33
34    public HiveAdministrationClient() {
35      UpdateSlaveGroups();
36      Users = new List<string>();
37      Users.Add("Mr. White");
38      Users.Add("Mr. Pink");
39      Users.Add("Mr. Blue");
40    }
41
42    protected HiveAdministrationClient(HiveAdministrationClient original, Cloner cloner)
43      : base(original, cloner) {
44      //TODO: clone
45    }
46    public override IDeepCloneable Clone(HeuristicLab.Common.Cloner cloner) {
47      return new HiveAdministrationClient(this, cloner);
48    }
49
50    public void UpdateSlaveGroups() {
51      /*SlaveGroup sg = new SlaveGroup();
52      sg.Name = "Test" + Guid.NewGuid();
53      sg.Description = "TestGroupdesc";
54      sg.Id = Guid.NewGuid();
55      ServiceLocator.Instance.CallHiveService(service => service.AddSlaveGroup(sg));*/
56
57
58      ServiceLocator.Instance.CallHiveService(service => {
59        SlaveGroups = new List<SlaveGroup>(service.GetSlaveGroups());
60        Slaves = new List<Slave>(service.GetSlaves());
61        OnItemImageChanged();
62      });
63    }
64  }
65}
Note: See TracBrowser for help on using the repository browser.