Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Server.Core/ClientCommunicator.cs @ 741

Last change on this file since 741 was 741, checked in by svonolfe, 16 years ago

Server interface implementation (#351)

File size: 547 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using HeuristicLab.Hive.Server.Interfaces;
6
7namespace HeuristicLab.Hive.Server.Core {
8  class ClientCommunicator: IClientCommunicator {
9    #region IClientCommunicator Members
10
11    public Response Login(HeuristicLab.Hive.Server.BusinessObjects.Client clientInfo) {
12      Response response = new Response();
13      response.Success = true;
14      response.StatusMessage = "Logged in...";
15
16      return response;
17    }
18
19    #endregion
20  }
21}
Note: See TracBrowser for help on using the repository browser.