Exchange 2010 SP2 provisioning separated through a new provider Exchange 2010 SP2 now compliant with product group guidelines Support for Database Availability Group Fixed Distribution List view scope to only tenant Consumer support (individual mailboxes as hotmail) added Mailbox configuration moved to mailbox plans concept CN creation is now based on UPN sAMAccountName generation revised and decoupled from tenant name 2007 (ACL Based), 2010 (ACL Bases), 2010 SP2 (ABP) supported Automated Hosted Organization provisioning added to create hosting space Enterprise Server webservice extended with ImportMethod Mobile tab fixed Added more information to users listview
71 lines
1.8 KiB
C#
71 lines
1.8 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace WebsitePanel.Providers.HostedSolution
|
|
{
|
|
public class TransactionAction
|
|
{
|
|
private TransactionActionTypes actionType;
|
|
|
|
public TransactionActionTypes ActionType
|
|
{
|
|
get { return actionType; }
|
|
set { actionType = value; }
|
|
}
|
|
|
|
private string id;
|
|
|
|
public string Id
|
|
{
|
|
get { return id; }
|
|
set { id = value; }
|
|
}
|
|
|
|
private string suffix;
|
|
|
|
public string Suffix
|
|
{
|
|
get { return suffix; }
|
|
set { suffix = value; }
|
|
}
|
|
|
|
private string account;
|
|
|
|
public string Account
|
|
{
|
|
get { return account; }
|
|
set { account = value; }
|
|
|
|
}
|
|
|
|
public enum TransactionActionTypes
|
|
{
|
|
CreateOrganizationUnit,
|
|
CreateGlobalAddressList,
|
|
CreateAddressList,
|
|
CreateAddressBookPolicy,
|
|
CreateOfflineAddressBook,
|
|
CreateDistributionGroup,
|
|
EnableDistributionGroup,
|
|
CreateAcceptedDomain,
|
|
AddUPNSuffix,
|
|
CreateMailbox,
|
|
CreateContact,
|
|
CreatePublicFolder,
|
|
CreateActiveSyncPolicy,
|
|
AddMailboxFullAccessPermission,
|
|
AddSendAsPermission,
|
|
RemoveMailboxFullAccessPermission,
|
|
RemoveSendAsPermission,
|
|
EnableMailbox,
|
|
LyncNewSipDomain,
|
|
LyncNewSimpleUrl,
|
|
LyncNewUser,
|
|
LyncNewConferencingPolicy,
|
|
LyncNewExternalAccessPolicy,
|
|
LyncNewMobilityPolicy
|
|
};
|
|
}
|
|
}
|