Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 5638 was 5638, checked in by ascheibe, 13 years ago

#1233 worked on Administration UI

File size: 2.1 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    public List<HiveExperiment> Experiments;
34
35
36    public HiveAdministrationClient() {
37      UpdateSlaveGroups();
38      Users = new List<string>();
39      Users.Add("Mr. White");
40      Users.Add("Mr. Pink");
41      Users.Add("Mr. Blue");
42    }
43
44    protected HiveAdministrationClient(HiveAdministrationClient original, Cloner cloner)
45      : base(original, cloner) {
46      //TODO: clone
47    }
48    public override IDeepCloneable Clone(HeuristicLab.Common.Cloner cloner) {
49      return new HiveAdministrationClient(this, cloner);
50    }
51
52    public void UpdateSlaveGroups() {
53      ServiceLocator.Instance.CallHiveService(service => {
54        SlaveGroups = new List<SlaveGroup>(service.GetSlaveGroups());
55        Slaves = new List<Slave>(service.GetSlaves());
56        Experiments = new List<HiveExperiment>(service.GetAllHiveExperiments());
57      });
58    }
59  }
60}
Note: See TracBrowser for help on using the repository browser.