Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DeploymentServer Prototype/HeuristicLab.Services/HeuristicLab.DeploymentService.AdminClient/Service References/AdminService/Reference.cs @ 2802

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

Worked on administration front-end for deployment service. #860 (Deployment server for plugin installation from web locations)

File size: 3.0 KB
Line 
1//------------------------------------------------------------------------------
2// <auto-generated>
3//     This code was generated by a tool.
4//     Runtime Version:2.0.50727.4200
5//
6//     Changes to this file may cause incorrect behavior and will be lost if
7//     the code is regenerated.
8// </auto-generated>
9//------------------------------------------------------------------------------
10
11namespace HeuristicLab.DeploymentService.AdminClient.AdminService {
12   
13   
14    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")]
15    [System.ServiceModel.ServiceContractAttribute(ConfigurationName="AdminService.IAdmin")]
16    public interface IAdmin {
17       
18        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IAdmin/DeployProduct", ReplyAction="http://tempuri.org/IAdmin/DeployProductResponse")]
19        void DeployProduct(HeuristicLab.PluginInfrastructure.PluginUpdateService.ProductDescription product);
20       
21        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IAdmin/DeployPlugin", ReplyAction="http://tempuri.org/IAdmin/DeployPluginResponse")]
22        void DeployPlugin(HeuristicLab.PluginInfrastructure.PluginUpdateService.PluginDescription plugin, byte[] zipFile);
23    }
24   
25    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")]
26    public interface IAdminChannel : HeuristicLab.DeploymentService.AdminClient.AdminService.IAdmin, System.ServiceModel.IClientChannel {
27    }
28   
29    [System.Diagnostics.DebuggerStepThroughAttribute()]
30    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")]
31    public partial class AdminClient : System.ServiceModel.ClientBase<HeuristicLab.DeploymentService.AdminClient.AdminService.IAdmin>, HeuristicLab.DeploymentService.AdminClient.AdminService.IAdmin {
32       
33        public AdminClient() {
34        }
35       
36        public AdminClient(string endpointConfigurationName) :
37                base(endpointConfigurationName) {
38        }
39       
40        public AdminClient(string endpointConfigurationName, string remoteAddress) :
41                base(endpointConfigurationName, remoteAddress) {
42        }
43       
44        public AdminClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) :
45                base(endpointConfigurationName, remoteAddress) {
46        }
47       
48        public AdminClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) :
49                base(binding, remoteAddress) {
50        }
51       
52        public void DeployProduct(HeuristicLab.PluginInfrastructure.PluginUpdateService.ProductDescription product) {
53            base.Channel.DeployProduct(product);
54        }
55       
56        public void DeployPlugin(HeuristicLab.PluginInfrastructure.PluginUpdateService.PluginDescription plugin, byte[] zipFile) {
57            base.Channel.DeployPlugin(plugin, zipFile);
58        }
59    }
60}
Note: See TracBrowser for help on using the repository browser.