Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Services.Deployment/3.3/IUpdate.cs @ 3072

Last change on this file since 3072 was 3072, checked in by gkronber, 14 years ago

Copied projects related to the deployment service from the feature branch. #918 (Integrate deployment service into trunk and HL3.3 solution file)

File size: 676 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Runtime.Serialization;
5using System.ServiceModel;
6using System.Text;
7using HeuristicLab.Services.Deployment.DataAccess;
8
9namespace HeuristicLab.Services.Deployment {
10  // NOTE: If you change the interface name "IUpdate" here, you must also update the reference to "IUpdate" in App.config.
11  [ServiceContract]
12  public interface IUpdate {
13    [OperationContract]
14    byte[] GetPlugin(PluginDescription description);
15
16    [OperationContract]
17    IEnumerable<ProductDescription> GetProducts();
18
19    [OperationContract]
20    IEnumerable<PluginDescription> GetPlugins();
21  }
22}
Note: See TracBrowser for help on using the repository browser.