public GalleryWebAppStatus GetGalleryApplicationStatus(int packageId, string webAppId)
 {
     WebAppGalleryController.InitFeeds(SecurityContext.User.UserId, packageId);
     return(WebAppGalleryController.GetGalleryApplicationStatus(packageId, webAppId));
 }
 public DeploymentParametersResult GetGalleryApplicationParams(int packageId, string applicationId)
 {
     WebAppGalleryController.InitFeeds(SecurityContext.User.UserId, packageId);
     return(WebAppGalleryController.GetGalleryApplicationParams(packageId, applicationId));
 }
 public StringResultObject Install(int packageId, string webAppId, string siteName, string virtualDir, List <DeploymentParameter> parameters, string languageId)
 {
     WebAppGalleryController.InitFeeds(SecurityContext.User.UserId, packageId);
     return(WebAppGalleryController.Install(packageId, webAppId, siteName, virtualDir, parameters, languageId));
 }
 public GalleryApplicationResult GetGalleryApplicationDetails(int packageId, string applicationId)
 {
     WebAppGalleryController.InitFeeds(SecurityContext.User.UserId, packageId);
     return(WebAppGalleryController.GetGalleryApplicationDetails(packageId, applicationId));
 }