Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/15/10 17:24:31 (14 years ago)
Author:
gkronber
Message:

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

Location:
branches/DeploymentServer Prototype/HeuristicLab.Services/HeuristicLab.DeploymentService.AdminClient
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/DeploymentServer Prototype/HeuristicLab.Services/HeuristicLab.DeploymentService.AdminClient

    • Property svn:ignore set to
      bin
      obj
      *.user
  • branches/DeploymentServer Prototype/HeuristicLab.Services/HeuristicLab.DeploymentService.AdminClient/Service References/AdminService/Reference.cs

    r2802 r2804  
    1717       
    1818        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IAdmin/DeployProduct", ReplyAction="http://tempuri.org/IAdmin/DeployProductResponse")]
    19         void DeployProduct(HeuristicLab.PluginInfrastructure.PluginUpdateService.ProductDescription product);
     19        void DeployProduct(object product);
    2020       
    2121        [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);
     22        void DeployPlugin(object plugin, byte[] zipFile);
    2323    }
    2424   
     
    5050        }
    5151       
    52         public void DeployProduct(HeuristicLab.PluginInfrastructure.PluginUpdateService.ProductDescription product) {
     52        public void DeployProduct(object product) {
    5353            base.Channel.DeployProduct(product);
    5454        }
    5555       
    56         public void DeployPlugin(HeuristicLab.PluginInfrastructure.PluginUpdateService.PluginDescription plugin, byte[] zipFile) {
     56        public void DeployPlugin(object plugin, byte[] zipFile) {
    5757            base.Channel.DeployPlugin(plugin, zipFile);
    5858        }
Note: See TracChangeset for help on using the changeset viewer.