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)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DeploymentServer Prototype/HeuristicLab.Services/HeuristicLab.Services.Deployment.Test/Service References/AdminService/Reference.cs

    r2771 r2804  
    1717       
    1818        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IAdmin/DeployProduct", ReplyAction="http://tempuri.org/IAdmin/DeployProductResponse")]
    19         void DeployProduct(HeuristicLab.Services.Deployment.DataAccess.ProductDescription product);
     19        void DeployProduct(HeuristicLab.Services.Deployment.ProductDescription product);
    2020       
    2121        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IAdmin/DeployPlugin", ReplyAction="http://tempuri.org/IAdmin/DeployPluginResponse")]
    22         void DeployPlugin(HeuristicLab.Services.Deployment.DataAccess.PluginDescription plugin, byte[] zipFile);
     22        void DeployPlugin(HeuristicLab.Services.Deployment.PluginDescription plugin, byte[] zipFile);
    2323    }
    2424   
     
    5050        }
    5151       
    52         public void DeployProduct(HeuristicLab.Services.Deployment.DataAccess.ProductDescription product) {
     52        public void DeployProduct(HeuristicLab.Services.Deployment.ProductDescription product) {
    5353            base.Channel.DeployProduct(product);
    5454        }
    5555       
    56         public void DeployPlugin(HeuristicLab.Services.Deployment.DataAccess.PluginDescription plugin, byte[] zipFile) {
     56        public void DeployPlugin(HeuristicLab.Services.Deployment.PluginDescription plugin, byte[] zipFile) {
    5757            base.Channel.DeployPlugin(plugin, zipFile);
    5858        }
Note: See TracChangeset for help on using the changeset viewer.