- Timestamp:
- 09/17/10 11:00:53 (14 years ago)
- Location:
- branches/3.3-Hive/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Core/3.3
- Files:
-
- 11 deleted
- 17 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.3-Hive/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Core/3.3/Authorization/AuthorizationManager.cs
r4423 r4424 1 using System; 2 using System.Collections.Generic; 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 using System; 3 23 using System.Linq; 4 using System.Text;5 using System.Security.Principal;6 using System.ServiceModel;7 using System.Threading;8 24 using System.Security; 9 using HeuristicLab.Hive.Server.DataAccess;25 using System.Web.Security; 10 26 using HeuristicLab.Hive.Server.Core.InternalInterfaces; 11 using System.Web.Security;12 27 13 28 namespace HeuristicLab.Hive.Server.Core.Authorization { -
branches/3.3-Hive/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Core/3.3/CreateHiveDatabaseApplication.cs
r4267 r4424 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 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 using System.Windows.Forms; 23 using HeuristicLab.Hive.Server.DataAccess; 5 24 using HeuristicLab.PluginInfrastructure; 6 using HeuristicLab.Hive.Server;7 using HeuristicLab.Hive.Server.DataAccess;8 using System.Windows.Forms;9 25 10 26 namespace HeuristicLab.Hive.Server.Core { -
branches/3.3-Hive/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Core/3.3/DaoLocator.cs
r4423 r4424 1 using System; 2 using System.Collections.Generic; 3 using System.Text; 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 using System; 4 23 using HeuristicLab.Hive.Server.DataAccess; 5 24 using HeuristicLab.Hive.Server.LINQDataAccess; -
branches/3.3-Hive/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Core/3.3/DefaultScheduler.cs
r4423 r4424 1 using System; 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 using System; 2 23 using System.Collections.Generic; 3 24 using System.Linq; 4 using System.Text;5 using HeuristicLab.Hive.Server.Core.InternalInterfaces;6 using HeuristicLab.Hive.Contracts.BusinessObjects;7 using HeuristicLab.Hive.Server.DataAccess;8 using System.Threading;9 using HeuristicLab.DataAccess.Interfaces;10 25 using System.Transactions; 11 26 using HeuristicLab.Hive.Contracts; 27 using HeuristicLab.Hive.Contracts.BusinessObjects; 28 using HeuristicLab.Hive.Server.Core.InternalInterfaces; 12 29 13 30 namespace HeuristicLab.Hive.Server.Core { -
branches/3.3-Hive/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Core/3.3/Facades/ClientFacade.cs
r4423 r4424 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-20 08Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 23 23 using System.Collections.Generic; 24 24 using System.Linq; 25 using System.Text; 26 using HeuristicLab.Hive.Contracts.Interfaces; 25 using System.Security.Permissions; 27 26 using HeuristicLab.Hive.Contracts; 28 27 using HeuristicLab.Hive.Contracts.BusinessObjects; 28 using HeuristicLab.Hive.Contracts.Interfaces; 29 using HeuristicLab.Hive.Contracts.ResponseObjects; 29 30 using HeuristicLab.Hive.Server.DataAccess; 30 using HeuristicLab.Hive.Contracts.ResponseObjects;31 using System.Security.Permissions;32 31 33 32 namespace HeuristicLab.Hive.Server.Core { -
branches/3.3-Hive/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Core/3.3/Facades/ServerConsoleFacade.cs
r4423 r4424 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-20 08Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 22 22 using System; 23 23 using System.Collections.Generic; 24 using System.Linq; 25 using System.Text; 24 using System.Security.Permissions; 25 using HeuristicLab.Hive.Contracts; 26 using HeuristicLab.Hive.Contracts.BusinessObjects; 26 27 using HeuristicLab.Hive.Contracts.Interfaces; 27 using HeuristicLab.Hive.Contracts.BusinessObjects; 28 using HeuristicLab.Hive.Contracts; 29 using HeuristicLab.Hive.Server.Core.InternalInterfaces; 30 using System.ServiceModel; 28 using HeuristicLab.Hive.Contracts.ResponseObjects; 31 29 using HeuristicLab.Hive.Server.DataAccess; 32 using HeuristicLab.Hive.Contracts.ResponseObjects;33 using System.Security.Permissions;34 using HeuristicLab.Hive.JobBase;35 30 36 31 namespace HeuristicLab.Hive.Server.Core { -
branches/3.3-Hive/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Core/3.3/Facades/SlaveFacade.cs
r4423 r4424 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-20 08Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 22 22 using System; 23 23 using System.Collections.Generic; 24 using System.Linq; 25 using System.Text; 24 using System.IO; 25 using System.Security.Permissions; 26 using System.ServiceModel; 27 using HeuristicLab.Hive.Contracts; 28 using HeuristicLab.Hive.Contracts.BusinessObjects; 26 29 using HeuristicLab.Hive.Contracts.Interfaces; 27 using HeuristicLab.Hive.Contracts.BusinessObjects; 28 using HeuristicLab.Hive.Contracts; 30 using HeuristicLab.Hive.Contracts.ResponseObjects; 31 using HeuristicLab.Hive.Server.Core.InternalInterfaces; 32 using HeuristicLab.Hive.Server.DataAccess; 29 33 using HeuristicLab.PluginInfrastructure; 30 using System.IO;31 using System.Runtime.Serialization.Formatters.Binary;32 using System.ServiceModel;33 using HeuristicLab.Hive.Server.Core.InternalInterfaces;34 using System.Transactions;35 using HeuristicLab.Hive.Server.LINQDataAccess;36 using HeuristicLab.Hive.Server.DataAccess;37 using HeuristicLab.Hive.Contracts.ResponseObjects;38 using System.Security.Permissions;39 using HeuristicLab.Hive.JobBase;40 34 41 35 namespace HeuristicLab.Hive.Server.Core { -
branches/3.3-Hive/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Core/3.3/HeuristicLabHiveServerCorePlugin.cs
r4296 r4424 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-20 08Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Text;25 22 using HeuristicLab.PluginInfrastructure; 26 23 -
branches/3.3-Hive/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Core/3.3/InternalInterfaces/IAuthorizationManager.cs
r4423 r4424 1 using System; 2 using System.Collections.Generic; 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 using System; 3 23 namespace HeuristicLab.Hive.Server.Core.InternalInterfaces { 4 24 public interface IAuthorizationManager { -
branches/3.3-Hive/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Core/3.3/InternalInterfaces/IInternalJobManager.cs
r4060 r4424 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-20 08Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 21 21 22 22 using System; 23 using System.Collections.Generic;24 using System.Linq;25 using System.Text;26 using HeuristicLab.Hive.Contracts.BusinessObjects;27 23 using System.IO; 28 24 -
branches/3.3-Hive/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Core/3.3/InternalInterfaces/IInternalSlaveCommunicator.cs
r4333 r4424 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-20 08Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Linq;25 using System.Text;26 using HeuristicLab.Hive.Contracts.BusinessObjects;27 using HeuristicLab.Hive.Contracts;28 22 using System.IO; 29 23 using HeuristicLab.Hive.Contracts.ResponseObjects; -
branches/3.3-Hive/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Core/3.3/InternalInterfaces/IScheduler.cs
r4253 r4424 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-20 08Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 21 21 22 22 using System; 23 using System.Collections.Generic;24 using System.Linq;25 using System.Text;26 23 using HeuristicLab.Hive.Contracts.BusinessObjects; 27 24 -
branches/3.3-Hive/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Core/3.3/JobManager.cs
r4423 r4424 2 2 3 3 /* HeuristicLab 4 * Copyright (C) 2002-20 08Heuristic and Evolutionary Algorithms Laboratory (HEAL)4 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 5 5 * 6 6 * This file is part of HeuristicLab. … … 24 24 using System; 25 25 using System.Collections.Generic; 26 using System.IO; 26 27 using System.Linq; 27 using System.Text; 28 using HeuristicLab.Hive.Contracts; 29 using HeuristicLab.Hive.Contracts.BusinessObjects; 28 30 using HeuristicLab.Hive.Contracts.Interfaces; 29 using HeuristicLab.Hive.Contracts. BusinessObjects;30 using HeuristicLab.Hive. Contracts;31 using HeuristicLab.Hive.Contracts.ResponseObjects; 32 using HeuristicLab.Hive.Server.Core.InternalInterfaces; 31 33 using HeuristicLab.Hive.Server.DataAccess; 32 using HeuristicLab.Hive.Server.Core.InternalInterfaces;33 using HeuristicLab.DataAccess.Interfaces;34 using System.Data;35 using System.IO;36 34 using HeuristicLab.Tracing; 37 using System.Transactions;38 using HeuristicLab.Hive.Server.LINQDataAccess;39 using IsolationLevel = System.Transactions.IsolationLevel;40 using HeuristicLab.Hive.Contracts.ResponseObjects;41 using HeuristicLab.Hive.JobBase;42 35 43 36 namespace HeuristicLab.Hive.Server.Core { -
branches/3.3-Hive/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Core/3.3/LifecycleManager.cs
r4423 r4424 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-20 08Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 21 21 22 22 using System; 23 using System.Collections.Generic; 24 using System.Linq; 25 using System.Text; 23 using System.Threading; 26 24 using HeuristicLab.Hive.Contracts.Interfaces; 27 using HeuristicLab.Hive.Server.DataAccess;28 using System.Timers;29 using HeuristicLab.DataAccess.Interfaces;30 25 using HeuristicLab.Tracing; 31 using System.Threading;32 26 33 27 namespace HeuristicLab.Hive.Server.Core { -
branches/3.3-Hive/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Core/3.3/ServiceLocator.cs
r4333 r4424 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-20 08Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 21 21 22 22 using System.Linq; 23 using System.Runtime.CompilerServices; 24 using HeuristicLab.Hive.Contracts.Interfaces; 25 using HeuristicLab.Hive.Server.Core.InternalInterfaces; 23 26 using HeuristicLab.Hive.Server.DataAccess; 24 27 using HeuristicLab.PluginInfrastructure; 25 using System.Runtime.CompilerServices;26 using HeuristicLab.Hive.Contracts.Interfaces;27 using HeuristicLab.Hive.Server.Core;28 using HeuristicLab.Hive.Server.Core.InternalInterfaces;29 using HeuristicLab.DataAccess.Interfaces;30 using System.Data.SqlClient;31 28 32 29 namespace HeuristicLab.Hive.Server.Core { -
branches/3.3-Hive/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Core/3.3/SlaveCommunicator.cs
r4423 r4424 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-20 08Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 30 30 using HeuristicLab.Hive.Contracts.BusinessObjects; 31 31 using HeuristicLab.Hive.Contracts.Interfaces; 32 using HeuristicLab.Hive.Contracts.ResponseObjects; 32 33 using HeuristicLab.Hive.Server.Core.InternalInterfaces; 33 34 using HeuristicLab.PluginInfrastructure; 34 35 using HeuristicLab.Tracing; 35 using HeuristicLab.Hive.Contracts.ResponseObjects;36 using System.Security.Permissions;37 using System.Web.Security;38 using System.Security.Principal;39 using System.ServiceModel;40 using System.Security;41 using HeuristicLab.Hive.JobBase;42 36 43 37 namespace HeuristicLab.Hive.Server.Core { -
branches/3.3-Hive/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Core/3.3/SlaveManager.cs
r4423 r4424 2 2 3 3 /* HeuristicLab 4 * Copyright (C) 2002-20 08Heuristic and Evolutionary Algorithms Laboratory (HEAL)4 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 5 5 * 6 6 * This file is part of HeuristicLab. … … 24 24 using System; 25 25 using System.Collections.Generic; 26 using System.Linq;27 using System.Text;26 using HeuristicLab.Hive.Contracts; 27 using HeuristicLab.Hive.Contracts.BusinessObjects; 28 28 using HeuristicLab.Hive.Contracts.Interfaces; 29 using HeuristicLab.Hive.Contracts.BusinessObjects;30 using HeuristicLab.Hive.Contracts;31 using HeuristicLab.Hive.Server.DataAccess;32 using HeuristicLab.DataAccess.Interfaces;33 using HeuristicLab.Hive.Server.LINQDataAccess;34 using SlaveGroup=HeuristicLab.Hive.Contracts.BusinessObjects.SlaveGroupDto;35 29 using HeuristicLab.Hive.Contracts.ResponseObjects; 30 using SlaveGroup = HeuristicLab.Hive.Contracts.BusinessObjects.SlaveGroupDto; 36 31 37 32 namespace HeuristicLab.Hive.Server.Core {
Note: See TracChangeset
for help on using the changeset viewer.