Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 | using HeuristicLab.Hive.Server.Interfaces;
|
---|
6 |
|
---|
7 | namespace 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.