Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/17/10 11:00:53 (14 years ago)
Author:
cneumuel
Message:
  • Added and updated License Information in every file
  • Sort and remove usings in every file
  • Deleted obsolete DataAccess.ADOHelper
  • Deleted some obsolete files
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
     22using System;
    323using System.Linq;
    4 using System.Text;
    5 using System.Security.Principal;
    6 using System.ServiceModel;
    7 using System.Threading;
    824using System.Security;
    9 using HeuristicLab.Hive.Server.DataAccess;
     25using System.Web.Security;
    1026using HeuristicLab.Hive.Server.Core.InternalInterfaces;
    11 using System.Web.Security;
    1227
    1328namespace 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
     22using System.Windows.Forms;
     23using HeuristicLab.Hive.Server.DataAccess;
    524using HeuristicLab.PluginInfrastructure;
    6 using HeuristicLab.Hive.Server;
    7 using HeuristicLab.Hive.Server.DataAccess;
    8 using System.Windows.Forms;
    925
    1026namespace 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
     22using System;
    423using HeuristicLab.Hive.Server.DataAccess;
    524using 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
     22using System;
    223using System.Collections.Generic;
    324using 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;
    1025using System.Transactions;
    1126using HeuristicLab.Hive.Contracts;
     27using HeuristicLab.Hive.Contracts.BusinessObjects;
     28using HeuristicLab.Hive.Server.Core.InternalInterfaces;
    1229
    1330namespace HeuristicLab.Hive.Server.Core {
  • branches/3.3-Hive/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Core/3.3/Facades/ClientFacade.cs

    r4423 r4424  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2008 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    2323using System.Collections.Generic;
    2424using System.Linq;
    25 using System.Text;
    26 using HeuristicLab.Hive.Contracts.Interfaces;
     25using System.Security.Permissions;
    2726using HeuristicLab.Hive.Contracts;
    2827using HeuristicLab.Hive.Contracts.BusinessObjects;
     28using HeuristicLab.Hive.Contracts.Interfaces;
     29using HeuristicLab.Hive.Contracts.ResponseObjects;
    2930using HeuristicLab.Hive.Server.DataAccess;
    30 using HeuristicLab.Hive.Contracts.ResponseObjects;
    31 using System.Security.Permissions;
    3231
    3332namespace HeuristicLab.Hive.Server.Core {
  • branches/3.3-Hive/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Core/3.3/Facades/ServerConsoleFacade.cs

    r4423 r4424  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2008 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    2222using System;
    2323using System.Collections.Generic;
    24 using System.Linq;
    25 using System.Text;
     24using System.Security.Permissions;
     25using HeuristicLab.Hive.Contracts;
     26using HeuristicLab.Hive.Contracts.BusinessObjects;
    2627using 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;
     28using HeuristicLab.Hive.Contracts.ResponseObjects;
    3129using HeuristicLab.Hive.Server.DataAccess;
    32 using HeuristicLab.Hive.Contracts.ResponseObjects;
    33 using System.Security.Permissions;
    34 using HeuristicLab.Hive.JobBase;
    3530
    3631namespace HeuristicLab.Hive.Server.Core {
  • branches/3.3-Hive/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Core/3.3/Facades/SlaveFacade.cs

    r4423 r4424  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2008 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    2222using System;
    2323using System.Collections.Generic;
    24 using System.Linq;
    25 using System.Text;
     24using System.IO;
     25using System.Security.Permissions;
     26using System.ServiceModel;
     27using HeuristicLab.Hive.Contracts;
     28using HeuristicLab.Hive.Contracts.BusinessObjects;
    2629using HeuristicLab.Hive.Contracts.Interfaces;
    27 using HeuristicLab.Hive.Contracts.BusinessObjects;
    28 using HeuristicLab.Hive.Contracts;
     30using HeuristicLab.Hive.Contracts.ResponseObjects;
     31using HeuristicLab.Hive.Server.Core.InternalInterfaces;
     32using HeuristicLab.Hive.Server.DataAccess;
    2933using 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;
    4034
    4135namespace HeuristicLab.Hive.Server.Core {
  • branches/3.3-Hive/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Core/3.3/HeuristicLabHiveServerCorePlugin.cs

    r4296 r4424  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2008 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    2020#endregion
    2121
    22 using System;
    23 using System.Collections.Generic;
    24 using System.Text;
    2522using HeuristicLab.PluginInfrastructure;
    2623
  • 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
     22using System;
    323namespace HeuristicLab.Hive.Server.Core.InternalInterfaces {
    424  public interface IAuthorizationManager {
  • branches/3.3-Hive/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Core/3.3/InternalInterfaces/IInternalJobManager.cs

    r4060 r4424  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2008 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    2121
    2222using System;
    23 using System.Collections.Generic;
    24 using System.Linq;
    25 using System.Text;
    26 using HeuristicLab.Hive.Contracts.BusinessObjects;
    2723using System.IO;
    2824
  • branches/3.3-Hive/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Core/3.3/InternalInterfaces/IInternalSlaveCommunicator.cs

    r4333 r4424  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2008 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    2020#endregion
    2121
    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;
    2822using System.IO;
    2923using HeuristicLab.Hive.Contracts.ResponseObjects;
  • branches/3.3-Hive/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Core/3.3/InternalInterfaces/IScheduler.cs

    r4253 r4424  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2008 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    2121
    2222using System;
    23 using System.Collections.Generic;
    24 using System.Linq;
    25 using System.Text;
    2623using HeuristicLab.Hive.Contracts.BusinessObjects;
    2724
  • branches/3.3-Hive/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Core/3.3/JobManager.cs

    r4423 r4424  
    22
    33/* HeuristicLab
    4  * Copyright (C) 2002-2008 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     4 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    55 *
    66 * This file is part of HeuristicLab.
     
    2424using System;
    2525using System.Collections.Generic;
     26using System.IO;
    2627using System.Linq;
    27 using System.Text;
     28using HeuristicLab.Hive.Contracts;
     29using HeuristicLab.Hive.Contracts.BusinessObjects;
    2830using HeuristicLab.Hive.Contracts.Interfaces;
    29 using HeuristicLab.Hive.Contracts.BusinessObjects;
    30 using HeuristicLab.Hive.Contracts;
     31using HeuristicLab.Hive.Contracts.ResponseObjects;
     32using HeuristicLab.Hive.Server.Core.InternalInterfaces;
    3133using HeuristicLab.Hive.Server.DataAccess;
    32 using HeuristicLab.Hive.Server.Core.InternalInterfaces;
    33 using HeuristicLab.DataAccess.Interfaces;
    34 using System.Data;
    35 using System.IO;
    3634using 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;
    4235
    4336namespace HeuristicLab.Hive.Server.Core {
  • branches/3.3-Hive/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Core/3.3/LifecycleManager.cs

    r4423 r4424  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2008 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    2121
    2222using System;
    23 using System.Collections.Generic;
    24 using System.Linq;
    25 using System.Text;
     23using System.Threading;
    2624using HeuristicLab.Hive.Contracts.Interfaces;
    27 using HeuristicLab.Hive.Server.DataAccess;
    28 using System.Timers;
    29 using HeuristicLab.DataAccess.Interfaces;
    3025using HeuristicLab.Tracing;
    31 using System.Threading;
    3226
    3327namespace HeuristicLab.Hive.Server.Core {
  • branches/3.3-Hive/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Core/3.3/ServiceLocator.cs

    r4333 r4424  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2008 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    2121
    2222using System.Linq;
     23using System.Runtime.CompilerServices;
     24using HeuristicLab.Hive.Contracts.Interfaces;
     25using HeuristicLab.Hive.Server.Core.InternalInterfaces;
    2326using HeuristicLab.Hive.Server.DataAccess;
    2427using 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;
    3128
    3229namespace HeuristicLab.Hive.Server.Core {
  • branches/3.3-Hive/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Core/3.3/SlaveCommunicator.cs

    r4423 r4424  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2008 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    3030using HeuristicLab.Hive.Contracts.BusinessObjects;
    3131using HeuristicLab.Hive.Contracts.Interfaces;
     32using HeuristicLab.Hive.Contracts.ResponseObjects;
    3233using HeuristicLab.Hive.Server.Core.InternalInterfaces;
    3334using HeuristicLab.PluginInfrastructure;
    3435using 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;
    4236
    4337namespace HeuristicLab.Hive.Server.Core {
  • branches/3.3-Hive/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Core/3.3/SlaveManager.cs

    r4423 r4424  
    22
    33/* HeuristicLab
    4  * Copyright (C) 2002-2008 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     4 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    55 *
    66 * This file is part of HeuristicLab.
     
    2424using System;
    2525using System.Collections.Generic;
    26 using System.Linq;
    27 using System.Text;
     26using HeuristicLab.Hive.Contracts;
     27using HeuristicLab.Hive.Contracts.BusinessObjects;
    2828using 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;
    3529using HeuristicLab.Hive.Contracts.ResponseObjects;
     30using SlaveGroup = HeuristicLab.Hive.Contracts.BusinessObjects.SlaveGroupDto;
    3631
    3732namespace HeuristicLab.Hive.Server.Core {
Note: See TracChangeset for help on using the changeset viewer.