Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/12/10 10:57:21 (15 years ago)
Author:
kgrading
Message:

changed the complete DAL to LINQ 2 SQL (with the exception of the job streaming), did a lot of refactoring, Introduced DTOs (that are named DTOs for better understanding), added the spring.NET Interceptor, reintroduced transactions and cleaned up the whole JobResult thing and updated a part of the config merger (#830)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Hive.Server.Core/3.2/ClientFacade.cs

    r2904 r3011  
    1 #region License Information
     1#region License Information
    22/* HeuristicLab
    33 * Copyright (C) 2002-2008 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     
    4646    #region IClientCommunicator Members
    4747
    48     public Response Login(ClientInfo clientInfo) {
     48    public Response Login(ClientDto clientInfo) {
    4949      return clientCommunicator.Login(clientInfo);
    5050    }
     
    5858    }
    5959
    60     public ResponseSerializedJob SendSerializedJob(Guid clientId) {
     60    /*public ResponseSerializedJob SendSerializedJob(Guid clientId) {
    6161      return clientCommunicator.SendSerializedJob(clientId);
    62     }
     62    } */
    6363
    6464    public ResponseResultReceived StoreFinishedJobResult(Guid clientId,
     
    7878    }
    7979
    80     public ResponsePlugin SendPlugins(List<HivePluginInfo> pluginList) {
     80    public ResponsePlugin SendPlugins(List<HivePluginInfoDto> pluginList) {
    8181      return clientCommunicator.SendPlugins(pluginList);
    8282    }
     
    120120    }
    121121
    122     public Stream SendStreamedPlugins(List<HivePluginInfo> pluginList) {
     122    public Stream SendStreamedPlugins(List<HivePluginInfoDto> pluginList) {
    123123      return
    124124        new StreamedObject<ResponsePlugin>(
Note: See TracChangeset for help on using the changeset viewer.