wsp-10106: Implement Exchange Tenant Disclaimer.
This commit is contained in:
parent
eee5d732fb
commit
0ec87fc5f4
28 changed files with 11296 additions and 7215 deletions
|
@ -0,0 +1,39 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace WebsitePanel.Providers.HostedSolution
|
||||
{
|
||||
public class ExchangeDisclaimer
|
||||
{
|
||||
int exchangeDisclaimerId;
|
||||
int itemId;
|
||||
string disclaimerName;
|
||||
string disclaimerText;
|
||||
|
||||
public int ItemId
|
||||
{
|
||||
get { return this.itemId; }
|
||||
set { this.itemId = value; }
|
||||
}
|
||||
|
||||
public int ExchangeDisclaimerId
|
||||
{
|
||||
get { return this.exchangeDisclaimerId; }
|
||||
set { this.exchangeDisclaimerId = value; }
|
||||
}
|
||||
|
||||
public string DisclaimerName
|
||||
{
|
||||
get { return this.disclaimerName; }
|
||||
set { this.disclaimerName = value; }
|
||||
}
|
||||
|
||||
public string DisclaimerText
|
||||
{
|
||||
get { return this.disclaimerText; }
|
||||
set { this.disclaimerText = value; }
|
||||
}
|
||||
|
||||
}
|
||||
}
|
|
@ -126,5 +126,9 @@ namespace WebsitePanel.Providers.HostedSolution
|
|||
void WipeDataFromDevice(string id);
|
||||
void CancelRemoteWipeRequest(string id);
|
||||
void RemoveDevice(string id);
|
||||
|
||||
// Disclaimers
|
||||
int NewDisclaimerTransportRule(string Name, string From, string Text);
|
||||
int RemoveTransportRule(string Name);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -83,6 +83,7 @@
|
|||
<Compile Include="HostedSolution\BlackBerryErrorsCodes.cs" />
|
||||
<Compile Include="HostedSolution\BlackBerryStatsItem.cs" />
|
||||
<Compile Include="HostedSolution\BlackBerryUserDeleteState.cs" />
|
||||
<Compile Include="HostedSolution\ExchangeDisclaimer.cs" />
|
||||
<Compile Include="HostedSolution\ExchangeOrganization.cs" />
|
||||
<Compile Include="HostedSolution\ExchangeAcceptedDomainType.cs" />
|
||||
<Compile Include="HostedSolution\ExchangeMailboxPlanType.cs" />
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue