add functionallity enterprise storage
This commit is contained in:
parent
cdf761d3ec
commit
922009d402
54 changed files with 4427 additions and 563 deletions
|
@ -29,6 +29,7 @@
|
|||
using System;
|
||||
using System.Collections;
|
||||
using WebsitePanel.Providers.OS;
|
||||
using WebsitePanel.Providers.Web;
|
||||
|
||||
namespace WebsitePanel.Providers.EnterpriseStorage
|
||||
{
|
||||
|
@ -38,10 +39,11 @@ namespace WebsitePanel.Providers.EnterpriseStorage
|
|||
public interface IEnterpriseStorage
|
||||
{
|
||||
SystemFile[] GetFolders(string organizationId);
|
||||
SystemFile GetFolder(string organizationId, string folder);
|
||||
SystemFile GetFolder(string organizationId, string folderName);
|
||||
void CreateFolder(string organizationId, string folder);
|
||||
void DeleteFolder(string organizationId, string folder);
|
||||
void SetFolderQuota(string organizationId, string folder, long quota);
|
||||
bool SetFolderWebDavRules(string organizationId, string folder, WebDavFolderRule[] rules);
|
||||
WebDavFolderRule[] GetFolderWebDavRules(string organizationId, string folder);
|
||||
bool CheckFileServicesInstallation();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue