Type.registerNamespace('Softeng.Cms.Web');
Softeng.Cms.Web.BackOffice=function() {
Softeng.Cms.Web.BackOffice.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
Softeng.Cms.Web.BackOffice.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return Softeng.Cms.Web.BackOffice._staticInstance.get_path();},
Copy:function(aElementId,succeededCallback, failedCallback, userContext) {
/// <param name="aElementId" type="String">System.Guid</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'Copy',false,{aElementId:aElementId},succeededCallback,failedCallback,userContext); },
Cut:function(aElementId,succeededCallback, failedCallback, userContext) {
/// <param name="aElementId" type="String">System.Guid</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'Cut',false,{aElementId:aElementId},succeededCallback,failedCallback,userContext); },
Paste:function(aParentElementId,succeededCallback, failedCallback, userContext) {
/// <param name="aParentElementId" type="String">System.Guid</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'Paste',false,{aParentElementId:aParentElementId},succeededCallback,failedCallback,userContext); },
GetBackOfficeBindingHost:function(succeededCallback, failedCallback, userContext) {
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'GetBackOfficeBindingHost',false,{},succeededCallback,failedCallback,userContext); },
ConfirmRemoveMultiple:function(aElementIds,succeededCallback, failedCallback, userContext) {
/// <param name="aElementIds" type="Array">System.String[]</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'ConfirmRemoveMultiple',false,{aElementIds:aElementIds},succeededCallback,failedCallback,userContext); },
AddRepeaterContent:function(aFromContentId,aContentName,aRelationTypeId,aRelationDirectionSourceElementAsTarget,aIsBelow,succeededCallback, failedCallback, userContext) {
/// <param name="aFromContentId" type="String">System.Guid</param>
/// <param name="aContentName" type="String">System.String</param>
/// <param name="aRelationTypeId" type="String">System.Guid</param>
/// <param name="aRelationDirectionSourceElementAsTarget" type="Boolean">System.Boolean</param>
/// <param name="aIsBelow" type="Boolean">System.Boolean</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'AddRepeaterContent',false,{aFromContentId:aFromContentId,aContentName:aContentName,aRelationTypeId:aRelationTypeId,aRelationDirectionSourceElementAsTarget:aRelationDirectionSourceElementAsTarget,aIsBelow:aIsBelow},succeededCallback,failedCallback,userContext); },
MoveContentToPage:function(aParentContentId,aContentId,aRelationTypeId,aRelationDirectionSourceElementAsTarget,aPageSize,aPageToMove,aToBelow,succeededCallback, failedCallback, userContext) {
/// <param name="aParentContentId" type="String">System.Guid</param>
/// <param name="aContentId" type="String">System.Guid</param>
/// <param name="aRelationTypeId" type="String">System.Guid</param>
/// <param name="aRelationDirectionSourceElementAsTarget" type="Boolean">System.Boolean</param>
/// <param name="aPageSize" type="Number">System.Int32</param>
/// <param name="aPageToMove" type="Number">System.Int32</param>
/// <param name="aToBelow" type="Boolean">System.Boolean</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'MoveContentToPage',false,{aParentContentId:aParentContentId,aContentId:aContentId,aRelationTypeId:aRelationTypeId,aRelationDirectionSourceElementAsTarget:aRelationDirectionSourceElementAsTarget,aPageSize:aPageSize,aPageToMove:aPageToMove,aToBelow:aToBelow},succeededCallback,failedCallback,userContext); },
ConfirmRemove:function(aElementId,succeededCallback, failedCallback, userContext) {
/// <param name="aElementId" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'ConfirmRemove',false,{aElementId:aElementId},succeededCallback,failedCallback,userContext); },
GetElementStatusInfo:function(aElementId,succeededCallback, failedCallback, userContext) {
/// <param name="aElementId" type="String">System.Guid</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'GetElementStatusInfo',false,{aElementId:aElementId},succeededCallback,failedCallback,userContext); },
GetManyElementsStatusInfo:function(aElementIds,succeededCallback, failedCallback, userContext) {
/// <param name="aElementIds" type="Array">System.Guid[]</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'GetManyElementsStatusInfo',false,{aElementIds:aElementIds},succeededCallback,failedCallback,userContext); },
GetEditSelectorStatusInfo:function(aContentVersionId,succeededCallback, failedCallback, userContext) {
/// <param name="aContentVersionId" type="String">System.Guid</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'GetEditSelectorStatusInfo',false,{aContentVersionId:aContentVersionId},succeededCallback,failedCallback,userContext); },
GetTreeNodeInfo:function(aElementId,succeededCallback, failedCallback, userContext) {
/// <param name="aElementId" type="String">System.Guid</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'GetTreeNodeInfo',false,{aElementId:aElementId},succeededCallback,failedCallback,userContext); },
GetContentProperties:function(startRowIndex,maximumRows,sortExpression,filterExpression,contentId,succeededCallback, failedCallback, userContext) {
/// <param name="startRowIndex" type="Number">System.Int32</param>
/// <param name="maximumRows" type="Number">System.Int32</param>
/// <param name="sortExpression" type="String">System.String</param>
/// <param name="filterExpression" type="String">System.String</param>
/// <param name="contentId" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'GetContentProperties',false,{startRowIndex:startRowIndex,maximumRows:maximumRows,sortExpression:sortExpression,filterExpression:filterExpression,contentId:contentId},succeededCallback,failedCallback,userContext); },
GetContentBranches:function(startRowIndex,maximumRows,sortExpression,filterExpression,contentId,succeededCallback, failedCallback, userContext) {
/// <param name="startRowIndex" type="Number">System.Int32</param>
/// <param name="maximumRows" type="Number">System.Int32</param>
/// <param name="sortExpression" type="String">System.String</param>
/// <param name="filterExpression" type="String">System.String</param>
/// <param name="contentId" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'GetContentBranches',false,{startRowIndex:startRowIndex,maximumRows:maximumRows,sortExpression:sortExpression,filterExpression:filterExpression,contentId:contentId},succeededCallback,failedCallback,userContext); },
GetContentEditableBranches:function(startRowIndex,maximumRows,sortExpression,filterExpression,contentId,culture,succeededCallback, failedCallback, userContext) {
/// <param name="startRowIndex" type="Number">System.Int32</param>
/// <param name="maximumRows" type="Number">System.Int32</param>
/// <param name="sortExpression" type="String">System.String</param>
/// <param name="filterExpression" type="String">System.String</param>
/// <param name="contentId" type="String">System.String</param>
/// <param name="culture" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'GetContentEditableBranches',false,{startRowIndex:startRowIndex,maximumRows:maximumRows,sortExpression:sortExpression,filterExpression:filterExpression,contentId:contentId,culture:culture},succeededCallback,failedCallback,userContext); },
GetContentVersionFromBranch:function(startRowIndex,maximumRows,sortExpression,filterExpression,versionId,succeededCallback, failedCallback, userContext) {
/// <param name="startRowIndex" type="Number">System.Int32</param>
/// <param name="maximumRows" type="Number">System.Int32</param>
/// <param name="sortExpression" type="String">System.String</param>
/// <param name="filterExpression" type="String">System.String</param>
/// <param name="versionId" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'GetContentVersionFromBranch',false,{startRowIndex:startRowIndex,maximumRows:maximumRows,sortExpression:sortExpression,filterExpression:filterExpression,versionId:versionId},succeededCallback,failedCallback,userContext); },
GetSubElements:function(startRowIndex,maximumRows,sortExpression,filterExpression,parentId,succeededCallback, failedCallback, userContext) {
/// <param name="startRowIndex" type="Number">System.Int32</param>
/// <param name="maximumRows" type="Number">System.Int32</param>
/// <param name="sortExpression" type="String">System.String</param>
/// <param name="filterExpression" type="String">System.String</param>
/// <param name="parentId" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'GetSubElements',false,{startRowIndex:startRowIndex,maximumRows:maximumRows,sortExpression:sortExpression,filterExpression:filterExpression,parentId:parentId},succeededCallback,failedCallback,userContext); },
MoveElementsTo:function(aSourceId,aRelationTypeId,aRelationDirectionSourceElementAsTarget,aSelectedRowsIds,aTargetElementId,toBelow,succeededCallback, failedCallback, userContext) {
/// <param name="aSourceId" type="String">System.String</param>
/// <param name="aRelationTypeId" type="String">System.String</param>
/// <param name="aRelationDirectionSourceElementAsTarget" type="Boolean">System.Boolean</param>
/// <param name="aSelectedRowsIds" type="Array">System.String[]</param>
/// <param name="aTargetElementId" type="String">System.String</param>
/// <param name="toBelow" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'MoveElementsTo',false,{aSourceId:aSourceId,aRelationTypeId:aRelationTypeId,aRelationDirectionSourceElementAsTarget:aRelationDirectionSourceElementAsTarget,aSelectedRowsIds:aSelectedRowsIds,aTargetElementId:aTargetElementId,toBelow:toBelow},succeededCallback,failedCallback,userContext); },
MoveElementsToPosition:function(aSourceId,aRelationTypeId,aRelationDirectionSourceElementAsTarget,aSelectedRowsIds,aNewPosition,succeededCallback, failedCallback, userContext) {
/// <param name="aSourceId" type="String">System.String</param>
/// <param name="aRelationTypeId" type="String">System.String</param>
/// <param name="aRelationDirectionSourceElementAsTarget" type="Boolean">System.Boolean</param>
/// <param name="aSelectedRowsIds" type="Array">System.String[]</param>
/// <param name="aNewPosition" type="Number">System.Int32</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'MoveElementsToPosition',false,{aSourceId:aSourceId,aRelationTypeId:aRelationTypeId,aRelationDirectionSourceElementAsTarget:aRelationDirectionSourceElementAsTarget,aSelectedRowsIds:aSelectedRowsIds,aNewPosition:aNewPosition},succeededCallback,failedCallback,userContext); },
CreateElementACL:function(lElementId,succeededCallback, failedCallback, userContext) {
/// <param name="lElementId" type="String">System.Guid</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'CreateElementACL',false,{lElementId:lElementId},succeededCallback,failedCallback,userContext); },
MakeInheritFromMeta:function(aElementId,succeededCallback, failedCallback, userContext) {
/// <param name="aElementId" type="String">System.Guid</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'MakeInheritFromMeta',false,{aElementId:aElementId},succeededCallback,failedCallback,userContext); },
DeleteElement:function(aKeys,succeededCallback, failedCallback, userContext) {
/// <param name="aKeys" type="Array">System.String[]</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'DeleteElement',false,{aKeys:aKeys},succeededCallback,failedCallback,userContext); },
WFMove:function(aBranchId,aStepTo,succeededCallback, failedCallback, userContext) {
/// <param name="aBranchId" type="String">System.Guid</param>
/// <param name="aStepTo" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'WFMove',false,{aBranchId:aBranchId,aStepTo:aStepTo},succeededCallback,failedCallback,userContext); },
GetUsersRoles:function(elementId,sortExpression,filterExpression,succeededCallback, failedCallback, userContext) {
/// <param name="elementId" type="String">System.Guid</param>
/// <param name="sortExpression" type="String">System.String</param>
/// <param name="filterExpression" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'GetUsersRoles',false,{elementId:elementId,sortExpression:sortExpression,filterExpression:filterExpression},succeededCallback,failedCallback,userContext); },
GetPermissionsByUserRole:function(elementId,userRoleId,sortExpression,filterExpression,succeededCallback, failedCallback, userContext) {
/// <param name="elementId" type="String">System.Guid</param>
/// <param name="userRoleId" type="String">System.Guid</param>
/// <param name="sortExpression" type="String">System.String</param>
/// <param name="filterExpression" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'GetPermissionsByUserRole',false,{elementId:elementId,userRoleId:userRoleId,sortExpression:sortExpression,filterExpression:filterExpression},succeededCallback,failedCallback,userContext); },
AddNewUsersRoles:function(elementId,usersRolesId,succeededCallback, failedCallback, userContext) {
/// <param name="elementId" type="String">System.Guid</param>
/// <param name="usersRolesId" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'AddNewUsersRoles',false,{elementId:elementId,usersRolesId:usersRolesId},succeededCallback,failedCallback,userContext); },
SetNewPermissionByUserRole:function(elementId,userRoleId,elementFunctionId,elementFunctionRowId,permissionValue,succeededCallback, failedCallback, userContext) {
/// <param name="elementId" type="String">System.Guid</param>
/// <param name="userRoleId" type="String">System.Guid</param>
/// <param name="elementFunctionId" type="String">System.Guid</param>
/// <param name="elementFunctionRowId" type="String">System.Guid</param>
/// <param name="permissionValue" type="Number">System.Int32</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'SetNewPermissionByUserRole',false,{elementId:elementId,userRoleId:userRoleId,elementFunctionId:elementFunctionId,elementFunctionRowId:elementFunctionRowId,permissionValue:permissionValue},succeededCallback,failedCallback,userContext); },
DeletePermissionsByUserRole:function(elementId,userRoleId,succeededCallback, failedCallback, userContext) {
/// <param name="elementId" type="String">System.Guid</param>
/// <param name="userRoleId" type="String">System.Guid</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'DeletePermissionsByUserRole',false,{elementId:elementId,userRoleId:userRoleId},succeededCallback,failedCallback,userContext); },
GetElementTabs:function(elementId,succeededCallback, failedCallback, userContext) {
/// <param name="elementId" type="String">System.Guid</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'GetElementTabs',false,{elementId:elementId},succeededCallback,failedCallback,userContext); },
GetRootElementId:function(aElementId,succeededCallback, failedCallback, userContext) {
/// <param name="aElementId" type="String">System.Guid</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'GetRootElementId',false,{aElementId:aElementId},succeededCallback,failedCallback,userContext); },
GetToolBarButtonsConfiguration:function(elementId,restrictedMode,hideSaveCancel,hideRemoveBranch,hideNewVersion,succeededCallback, failedCallback, userContext) {
/// <param name="elementId" type="String">System.Guid</param>
/// <param name="restrictedMode" type="Boolean">System.Boolean</param>
/// <param name="hideSaveCancel" type="Boolean">System.Boolean</param>
/// <param name="hideRemoveBranch" type="Boolean">System.Boolean</param>
/// <param name="hideNewVersion" type="Boolean">System.Boolean</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'GetToolBarButtonsConfiguration',false,{elementId:elementId,restrictedMode:restrictedMode,hideSaveCancel:hideSaveCancel,hideRemoveBranch:hideRemoveBranch,hideNewVersion:hideNewVersion},succeededCallback,failedCallback,userContext); },
GetPropertiesWithPkDefinition:function(aDefinitionId,succeededCallback, failedCallback, userContext) {
/// <param name="aDefinitionId" type="String">System.Guid</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'GetPropertiesWithPkDefinition',false,{aDefinitionId:aDefinitionId},succeededCallback,failedCallback,userContext); },
SetPrimaryKeyPropertyDefinition:function(aDefinitionId,aKeys,succeededCallback, failedCallback, userContext) {
/// <param name="aDefinitionId" type="String">System.Guid</param>
/// <param name="aKeys" type="Array">System.String[]</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'SetPrimaryKeyPropertyDefinition',false,{aDefinitionId:aDefinitionId,aKeys:aKeys},succeededCallback,failedCallback,userContext); },
GetUniqueIndexes:function(aDefinitionId,succeededCallback, failedCallback, userContext) {
/// <param name="aDefinitionId" type="String">System.Guid</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'GetUniqueIndexes',false,{aDefinitionId:aDefinitionId},succeededCallback,failedCallback,userContext); },
GetPropertiesWithIndexDefinition:function(aDefinitionId,aIndexId,succeededCallback, failedCallback, userContext) {
/// <param name="aDefinitionId" type="String">System.Guid</param>
/// <param name="aIndexId" type="String">System.Guid</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'GetPropertiesWithIndexDefinition',false,{aDefinitionId:aDefinitionId,aIndexId:aIndexId},succeededCallback,failedCallback,userContext); },
SetUniqueIndex:function(aDefinitionId,aIndexId,aIndexName,aKeys,succeededCallback, failedCallback, userContext) {
/// <param name="aDefinitionId" type="String">System.Guid</param>
/// <param name="aIndexId" type="String">System.Guid</param>
/// <param name="aIndexName" type="String">System.String</param>
/// <param name="aKeys" type="Array">System.String[]</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'SetUniqueIndex',false,{aDefinitionId:aDefinitionId,aIndexId:aIndexId,aIndexName:aIndexName,aKeys:aKeys},succeededCallback,failedCallback,userContext); },
RemoveUniqueIndex:function(aDefinitionId,aIndexId,succeededCallback, failedCallback, userContext) {
/// <param name="aDefinitionId" type="String">System.Guid</param>
/// <param name="aIndexId" type="String">System.Guid</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'RemoveUniqueIndex',false,{aDefinitionId:aDefinitionId,aIndexId:aIndexId},succeededCallback,failedCallback,userContext); },
DiscardDraft:function(aContentVersionId,succeededCallback, failedCallback, userContext) {
/// <param name="aContentVersionId" type="String">System.Guid</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'DiscardDraft',false,{aContentVersionId:aContentVersionId},succeededCallback,failedCallback,userContext); },
Resource_Save:function(aContentVersionId,aText,succeededCallback, failedCallback, userContext) {
/// <param name="aContentVersionId" type="String">System.Guid</param>
/// <param name="aText" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'Resource_Save',false,{aContentVersionId:aContentVersionId,aText:aText},succeededCallback,failedCallback,userContext); },
Resource_AutoSave:function(aContentVersionId,aText,succeededCallback, failedCallback, userContext) {
/// <param name="aContentVersionId" type="String">System.Guid</param>
/// <param name="aText" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'Resource_AutoSave',false,{aContentVersionId:aContentVersionId,aText:aText},succeededCallback,failedCallback,userContext); },
Resource_RecoverDraft:function(aContentVersionId,succeededCallback, failedCallback, userContext) {
/// <param name="aContentVersionId" type="String">System.Guid</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'Resource_RecoverDraft',false,{aContentVersionId:aContentVersionId},succeededCallback,failedCallback,userContext); },
RemoveLocalizatedContentVersion:function(aElementId,aCultureStr,succeededCallback, failedCallback, userContext) {
/// <param name="aElementId" type="String">System.Guid</param>
/// <param name="aCultureStr" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'RemoveLocalizatedContentVersion',false,{aElementId:aElementId,aCultureStr:aCultureStr},succeededCallback,failedCallback,userContext); },
GetDisplayNameCulture:function(aCultureStr,succeededCallback, failedCallback, userContext) {
/// <param name="aCultureStr" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'GetDisplayNameCulture',false,{aCultureStr:aCultureStr},succeededCallback,failedCallback,userContext); },
CompileCSharp:function(aCSharp,succeededCallback, failedCallback, userContext) {
/// <param name="aCSharp" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'CompileCSharp',false,{aCSharp:aCSharp},succeededCallback,failedCallback,userContext); },
CompileCSharpAll:function(aCSharp,succeededCallback, failedCallback, userContext) {
/// <param name="aCSharp" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'CompileCSharpAll',false,{aCSharp:aCSharp},succeededCallback,failedCallback,userContext); }}
Softeng.Cms.Web.BackOffice.registerClass('Softeng.Cms.Web.BackOffice',Sys.Net.WebServiceProxy);
Softeng.Cms.Web.BackOffice._staticInstance = new Softeng.Cms.Web.BackOffice();
Softeng.Cms.Web.BackOffice.set_path = function(value) {
Softeng.Cms.Web.BackOffice._staticInstance.set_path(value); }
Softeng.Cms.Web.BackOffice.get_path = function() { 
/// <value type="String" mayBeNull="true">The service url.</value>
return Softeng.Cms.Web.BackOffice._staticInstance.get_path();}
Softeng.Cms.Web.BackOffice.set_timeout = function(value) {
Softeng.Cms.Web.BackOffice._staticInstance.set_timeout(value); }
Softeng.Cms.Web.BackOffice.get_timeout = function() { 
/// <value type="Number">The service timeout.</value>
return Softeng.Cms.Web.BackOffice._staticInstance.get_timeout(); }
Softeng.Cms.Web.BackOffice.set_defaultUserContext = function(value) { 
Softeng.Cms.Web.BackOffice._staticInstance.set_defaultUserContext(value); }
Softeng.Cms.Web.BackOffice.get_defaultUserContext = function() { 
/// <value mayBeNull="true">The service default user context.</value>
return Softeng.Cms.Web.BackOffice._staticInstance.get_defaultUserContext(); }
Softeng.Cms.Web.BackOffice.set_defaultSucceededCallback = function(value) { 
 Softeng.Cms.Web.BackOffice._staticInstance.set_defaultSucceededCallback(value); }
Softeng.Cms.Web.BackOffice.get_defaultSucceededCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default succeeded callback.</value>
return Softeng.Cms.Web.BackOffice._staticInstance.get_defaultSucceededCallback(); }
Softeng.Cms.Web.BackOffice.set_defaultFailedCallback = function(value) { 
Softeng.Cms.Web.BackOffice._staticInstance.set_defaultFailedCallback(value); }
Softeng.Cms.Web.BackOffice.get_defaultFailedCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default failed callback.</value>
return Softeng.Cms.Web.BackOffice._staticInstance.get_defaultFailedCallback(); }
Softeng.Cms.Web.BackOffice.set_path("/pb/services/BackOffice.asmx");
Softeng.Cms.Web.BackOffice.Copy= function(aElementId,onSuccess,onFailed,userContext) {
/// <param name="aElementId" type="String">System.Guid</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
Softeng.Cms.Web.BackOffice._staticInstance.Copy(aElementId,onSuccess,onFailed,userContext); }
Softeng.Cms.Web.BackOffice.Cut= function(aElementId,onSuccess,onFailed,userContext) {
/// <param name="aElementId" type="String">System.Guid</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
Softeng.Cms.Web.BackOffice._staticInstance.Cut(aElementId,onSuccess,onFailed,userContext); }
Softeng.Cms.Web.BackOffice.Paste= function(aParentElementId,onSuccess,onFailed,userContext) {
/// <param name="aParentElementId" type="String">System.Guid</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
Softeng.Cms.Web.BackOffice._staticInstance.Paste(aParentElementId,onSuccess,onFailed,userContext); }
Softeng.Cms.Web.BackOffice.GetBackOfficeBindingHost= function(onSuccess,onFailed,userContext) {
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
Softeng.Cms.Web.BackOffice._staticInstance.GetBackOfficeBindingHost(onSuccess,onFailed,userContext); }
Softeng.Cms.Web.BackOffice.ConfirmRemoveMultiple= function(aElementIds,onSuccess,onFailed,userContext) {
/// <param name="aElementIds" type="Array">System.String[]</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
Softeng.Cms.Web.BackOffice._staticInstance.ConfirmRemoveMultiple(aElementIds,onSuccess,onFailed,userContext); }
Softeng.Cms.Web.BackOffice.AddRepeaterContent= function(aFromContentId,aContentName,aRelationTypeId,aRelationDirectionSourceElementAsTarget,aIsBelow,onSuccess,onFailed,userContext) {
/// <param name="aFromContentId" type="String">System.Guid</param>
/// <param name="aContentName" type="String">System.String</param>
/// <param name="aRelationTypeId" type="String">System.Guid</param>
/// <param name="aRelationDirectionSourceElementAsTarget" type="Boolean">System.Boolean</param>
/// <param name="aIsBelow" type="Boolean">System.Boolean</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
Softeng.Cms.Web.BackOffice._staticInstance.AddRepeaterContent(aFromContentId,aContentName,aRelationTypeId,aRelationDirectionSourceElementAsTarget,aIsBelow,onSuccess,onFailed,userContext); }
Softeng.Cms.Web.BackOffice.MoveContentToPage= function(aParentContentId,aContentId,aRelationTypeId,aRelationDirectionSourceElementAsTarget,aPageSize,aPageToMove,aToBelow,onSuccess,onFailed,userContext) {
/// <param name="aParentContentId" type="String">System.Guid</param>
/// <param name="aContentId" type="String">System.Guid</param>
/// <param name="aRelationTypeId" type="String">System.Guid</param>
/// <param name="aRelationDirectionSourceElementAsTarget" type="Boolean">System.Boolean</param>
/// <param name="aPageSize" type="Number">System.Int32</param>
/// <param name="aPageToMove" type="Number">System.Int32</param>
/// <param name="aToBelow" type="Boolean">System.Boolean</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
Softeng.Cms.Web.BackOffice._staticInstance.MoveContentToPage(aParentContentId,aContentId,aRelationTypeId,aRelationDirectionSourceElementAsTarget,aPageSize,aPageToMove,aToBelow,onSuccess,onFailed,userContext); }
Softeng.Cms.Web.BackOffice.ConfirmRemove= function(aElementId,onSuccess,onFailed,userContext) {
/// <param name="aElementId" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
Softeng.Cms.Web.BackOffice._staticInstance.ConfirmRemove(aElementId,onSuccess,onFailed,userContext); }
Softeng.Cms.Web.BackOffice.GetElementStatusInfo= function(aElementId,onSuccess,onFailed,userContext) {
/// <param name="aElementId" type="String">System.Guid</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
Softeng.Cms.Web.BackOffice._staticInstance.GetElementStatusInfo(aElementId,onSuccess,onFailed,userContext); }
Softeng.Cms.Web.BackOffice.GetManyElementsStatusInfo= function(aElementIds,onSuccess,onFailed,userContext) {
/// <param name="aElementIds" type="Array">System.Guid[]</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
Softeng.Cms.Web.BackOffice._staticInstance.GetManyElementsStatusInfo(aElementIds,onSuccess,onFailed,userContext); }
Softeng.Cms.Web.BackOffice.GetEditSelectorStatusInfo= function(aContentVersionId,onSuccess,onFailed,userContext) {
/// <param name="aContentVersionId" type="String">System.Guid</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
Softeng.Cms.Web.BackOffice._staticInstance.GetEditSelectorStatusInfo(aContentVersionId,onSuccess,onFailed,userContext); }
Softeng.Cms.Web.BackOffice.GetTreeNodeInfo= function(aElementId,onSuccess,onFailed,userContext) {
/// <param name="aElementId" type="String">System.Guid</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
Softeng.Cms.Web.BackOffice._staticInstance.GetTreeNodeInfo(aElementId,onSuccess,onFailed,userContext); }
Softeng.Cms.Web.BackOffice.GetContentProperties= function(startRowIndex,maximumRows,sortExpression,filterExpression,contentId,onSuccess,onFailed,userContext) {
/// <param name="startRowIndex" type="Number">System.Int32</param>
/// <param name="maximumRows" type="Number">System.Int32</param>
/// <param name="sortExpression" type="String">System.String</param>
/// <param name="filterExpression" type="String">System.String</param>
/// <param name="contentId" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
Softeng.Cms.Web.BackOffice._staticInstance.GetContentProperties(startRowIndex,maximumRows,sortExpression,filterExpression,contentId,onSuccess,onFailed,userContext); }
Softeng.Cms.Web.BackOffice.GetContentBranches= function(startRowIndex,maximumRows,sortExpression,filterExpression,contentId,onSuccess,onFailed,userContext) {
/// <param name="startRowIndex" type="Number">System.Int32</param>
/// <param name="maximumRows" type="Number">System.Int32</param>
/// <param name="sortExpression" type="String">System.String</param>
/// <param name="filterExpression" type="String">System.String</param>
/// <param name="contentId" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
Softeng.Cms.Web.BackOffice._staticInstance.GetContentBranches(startRowIndex,maximumRows,sortExpression,filterExpression,contentId,onSuccess,onFailed,userContext); }
Softeng.Cms.Web.BackOffice.GetContentEditableBranches= function(startRowIndex,maximumRows,sortExpression,filterExpression,contentId,culture,onSuccess,onFailed,userContext) {
/// <param name="startRowIndex" type="Number">System.Int32</param>
/// <param name="maximumRows" type="Number">System.Int32</param>
/// <param name="sortExpression" type="String">System.String</param>
/// <param name="filterExpression" type="String">System.String</param>
/// <param name="contentId" type="String">System.String</param>
/// <param name="culture" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
Softeng.Cms.Web.BackOffice._staticInstance.GetContentEditableBranches(startRowIndex,maximumRows,sortExpression,filterExpression,contentId,culture,onSuccess,onFailed,userContext); }
Softeng.Cms.Web.BackOffice.GetContentVersionFromBranch= function(startRowIndex,maximumRows,sortExpression,filterExpression,versionId,onSuccess,onFailed,userContext) {
/// <param name="startRowIndex" type="Number">System.Int32</param>
/// <param name="maximumRows" type="Number">System.Int32</param>
/// <param name="sortExpression" type="String">System.String</param>
/// <param name="filterExpression" type="String">System.String</param>
/// <param name="versionId" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
Softeng.Cms.Web.BackOffice._staticInstance.GetContentVersionFromBranch(startRowIndex,maximumRows,sortExpression,filterExpression,versionId,onSuccess,onFailed,userContext); }
Softeng.Cms.Web.BackOffice.GetSubElements= function(startRowIndex,maximumRows,sortExpression,filterExpression,parentId,onSuccess,onFailed,userContext) {
/// <param name="startRowIndex" type="Number">System.Int32</param>
/// <param name="maximumRows" type="Number">System.Int32</param>
/// <param name="sortExpression" type="String">System.String</param>
/// <param name="filterExpression" type="String">System.String</param>
/// <param name="parentId" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
Softeng.Cms.Web.BackOffice._staticInstance.GetSubElements(startRowIndex,maximumRows,sortExpression,filterExpression,parentId,onSuccess,onFailed,userContext); }
Softeng.Cms.Web.BackOffice.MoveElementsTo= function(aSourceId,aRelationTypeId,aRelationDirectionSourceElementAsTarget,aSelectedRowsIds,aTargetElementId,toBelow,onSuccess,onFailed,userContext) {
/// <param name="aSourceId" type="String">System.String</param>
/// <param name="aRelationTypeId" type="String">System.String</param>
/// <param name="aRelationDirectionSourceElementAsTarget" type="Boolean">System.Boolean</param>
/// <param name="aSelectedRowsIds" type="Array">System.String[]</param>
/// <param name="aTargetElementId" type="String">System.String</param>
/// <param name="toBelow" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
Softeng.Cms.Web.BackOffice._staticInstance.MoveElementsTo(aSourceId,aRelationTypeId,aRelationDirectionSourceElementAsTarget,aSelectedRowsIds,aTargetElementId,toBelow,onSuccess,onFailed,userContext); }
Softeng.Cms.Web.BackOffice.MoveElementsToPosition= function(aSourceId,aRelationTypeId,aRelationDirectionSourceElementAsTarget,aSelectedRowsIds,aNewPosition,onSuccess,onFailed,userContext) {
/// <param name="aSourceId" type="String">System.String</param>
/// <param name="aRelationTypeId" type="String">System.String</param>
/// <param name="aRelationDirectionSourceElementAsTarget" type="Boolean">System.Boolean</param>
/// <param name="aSelectedRowsIds" type="Array">System.String[]</param>
/// <param name="aNewPosition" type="Number">System.Int32</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
Softeng.Cms.Web.BackOffice._staticInstance.MoveElementsToPosition(aSourceId,aRelationTypeId,aRelationDirectionSourceElementAsTarget,aSelectedRowsIds,aNewPosition,onSuccess,onFailed,userContext); }
Softeng.Cms.Web.BackOffice.CreateElementACL= function(lElementId,onSuccess,onFailed,userContext) {
/// <param name="lElementId" type="String">System.Guid</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
Softeng.Cms.Web.BackOffice._staticInstance.CreateElementACL(lElementId,onSuccess,onFailed,userContext); }
Softeng.Cms.Web.BackOffice.MakeInheritFromMeta= function(aElementId,onSuccess,onFailed,userContext) {
/// <param name="aElementId" type="String">System.Guid</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
Softeng.Cms.Web.BackOffice._staticInstance.MakeInheritFromMeta(aElementId,onSuccess,onFailed,userContext); }
Softeng.Cms.Web.BackOffice.DeleteElement= function(aKeys,onSuccess,onFailed,userContext) {
/// <param name="aKeys" type="Array">System.String[]</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
Softeng.Cms.Web.BackOffice._staticInstance.DeleteElement(aKeys,onSuccess,onFailed,userContext); }
Softeng.Cms.Web.BackOffice.WFMove= function(aBranchId,aStepTo,onSuccess,onFailed,userContext) {
/// <param name="aBranchId" type="String">System.Guid</param>
/// <param name="aStepTo" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
Softeng.Cms.Web.BackOffice._staticInstance.WFMove(aBranchId,aStepTo,onSuccess,onFailed,userContext); }
Softeng.Cms.Web.BackOffice.GetUsersRoles= function(elementId,sortExpression,filterExpression,onSuccess,onFailed,userContext) {
/// <param name="elementId" type="String">System.Guid</param>
/// <param name="sortExpression" type="String">System.String</param>
/// <param name="filterExpression" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
Softeng.Cms.Web.BackOffice._staticInstance.GetUsersRoles(elementId,sortExpression,filterExpression,onSuccess,onFailed,userContext); }
Softeng.Cms.Web.BackOffice.GetPermissionsByUserRole= function(elementId,userRoleId,sortExpression,filterExpression,onSuccess,onFailed,userContext) {
/// <param name="elementId" type="String">System.Guid</param>
/// <param name="userRoleId" type="String">System.Guid</param>
/// <param name="sortExpression" type="String">System.String</param>
/// <param name="filterExpression" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
Softeng.Cms.Web.BackOffice._staticInstance.GetPermissionsByUserRole(elementId,userRoleId,sortExpression,filterExpression,onSuccess,onFailed,userContext); }
Softeng.Cms.Web.BackOffice.AddNewUsersRoles= function(elementId,usersRolesId,onSuccess,onFailed,userContext) {
/// <param name="elementId" type="String">System.Guid</param>
/// <param name="usersRolesId" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
Softeng.Cms.Web.BackOffice._staticInstance.AddNewUsersRoles(elementId,usersRolesId,onSuccess,onFailed,userContext); }
Softeng.Cms.Web.BackOffice.SetNewPermissionByUserRole= function(elementId,userRoleId,elementFunctionId,elementFunctionRowId,permissionValue,onSuccess,onFailed,userContext) {
/// <param name="elementId" type="String">System.Guid</param>
/// <param name="userRoleId" type="String">System.Guid</param>
/// <param name="elementFunctionId" type="String">System.Guid</param>
/// <param name="elementFunctionRowId" type="String">System.Guid</param>
/// <param name="permissionValue" type="Number">System.Int32</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
Softeng.Cms.Web.BackOffice._staticInstance.SetNewPermissionByUserRole(elementId,userRoleId,elementFunctionId,elementFunctionRowId,permissionValue,onSuccess,onFailed,userContext); }
Softeng.Cms.Web.BackOffice.DeletePermissionsByUserRole= function(elementId,userRoleId,onSuccess,onFailed,userContext) {
/// <param name="elementId" type="String">System.Guid</param>
/// <param name="userRoleId" type="String">System.Guid</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
Softeng.Cms.Web.BackOffice._staticInstance.DeletePermissionsByUserRole(elementId,userRoleId,onSuccess,onFailed,userContext); }
Softeng.Cms.Web.BackOffice.GetElementTabs= function(elementId,onSuccess,onFailed,userContext) {
/// <param name="elementId" type="String">System.Guid</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
Softeng.Cms.Web.BackOffice._staticInstance.GetElementTabs(elementId,onSuccess,onFailed,userContext); }
Softeng.Cms.Web.BackOffice.GetRootElementId= function(aElementId,onSuccess,onFailed,userContext) {
/// <param name="aElementId" type="String">System.Guid</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
Softeng.Cms.Web.BackOffice._staticInstance.GetRootElementId(aElementId,onSuccess,onFailed,userContext); }
Softeng.Cms.Web.BackOffice.GetToolBarButtonsConfiguration= function(elementId,restrictedMode,hideSaveCancel,hideRemoveBranch,hideNewVersion,onSuccess,onFailed,userContext) {
/// <param name="elementId" type="String">System.Guid</param>
/// <param name="restrictedMode" type="Boolean">System.Boolean</param>
/// <param name="hideSaveCancel" type="Boolean">System.Boolean</param>
/// <param name="hideRemoveBranch" type="Boolean">System.Boolean</param>
/// <param name="hideNewVersion" type="Boolean">System.Boolean</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
Softeng.Cms.Web.BackOffice._staticInstance.GetToolBarButtonsConfiguration(elementId,restrictedMode,hideSaveCancel,hideRemoveBranch,hideNewVersion,onSuccess,onFailed,userContext); }
Softeng.Cms.Web.BackOffice.GetPropertiesWithPkDefinition= function(aDefinitionId,onSuccess,onFailed,userContext) {
/// <param name="aDefinitionId" type="String">System.Guid</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
Softeng.Cms.Web.BackOffice._staticInstance.GetPropertiesWithPkDefinition(aDefinitionId,onSuccess,onFailed,userContext); }
Softeng.Cms.Web.BackOffice.SetPrimaryKeyPropertyDefinition= function(aDefinitionId,aKeys,onSuccess,onFailed,userContext) {
/// <param name="aDefinitionId" type="String">System.Guid</param>
/// <param name="aKeys" type="Array">System.String[]</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
Softeng.Cms.Web.BackOffice._staticInstance.SetPrimaryKeyPropertyDefinition(aDefinitionId,aKeys,onSuccess,onFailed,userContext); }
Softeng.Cms.Web.BackOffice.GetUniqueIndexes= function(aDefinitionId,onSuccess,onFailed,userContext) {
/// <param name="aDefinitionId" type="String">System.Guid</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
Softeng.Cms.Web.BackOffice._staticInstance.GetUniqueIndexes(aDefinitionId,onSuccess,onFailed,userContext); }
Softeng.Cms.Web.BackOffice.GetPropertiesWithIndexDefinition= function(aDefinitionId,aIndexId,onSuccess,onFailed,userContext) {
/// <param name="aDefinitionId" type="String">System.Guid</param>
/// <param name="aIndexId" type="String">System.Guid</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
Softeng.Cms.Web.BackOffice._staticInstance.GetPropertiesWithIndexDefinition(aDefinitionId,aIndexId,onSuccess,onFailed,userContext); }
Softeng.Cms.Web.BackOffice.SetUniqueIndex= function(aDefinitionId,aIndexId,aIndexName,aKeys,onSuccess,onFailed,userContext) {
/// <param name="aDefinitionId" type="String">System.Guid</param>
/// <param name="aIndexId" type="String">System.Guid</param>
/// <param name="aIndexName" type="String">System.String</param>
/// <param name="aKeys" type="Array">System.String[]</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
Softeng.Cms.Web.BackOffice._staticInstance.SetUniqueIndex(aDefinitionId,aIndexId,aIndexName,aKeys,onSuccess,onFailed,userContext); }
Softeng.Cms.Web.BackOffice.RemoveUniqueIndex= function(aDefinitionId,aIndexId,onSuccess,onFailed,userContext) {
/// <param name="aDefinitionId" type="String">System.Guid</param>
/// <param name="aIndexId" type="String">System.Guid</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
Softeng.Cms.Web.BackOffice._staticInstance.RemoveUniqueIndex(aDefinitionId,aIndexId,onSuccess,onFailed,userContext); }
Softeng.Cms.Web.BackOffice.DiscardDraft= function(aContentVersionId,onSuccess,onFailed,userContext) {
/// <param name="aContentVersionId" type="String">System.Guid</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
Softeng.Cms.Web.BackOffice._staticInstance.DiscardDraft(aContentVersionId,onSuccess,onFailed,userContext); }
Softeng.Cms.Web.BackOffice.Resource_Save= function(aContentVersionId,aText,onSuccess,onFailed,userContext) {
/// <param name="aContentVersionId" type="String">System.Guid</param>
/// <param name="aText" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
Softeng.Cms.Web.BackOffice._staticInstance.Resource_Save(aContentVersionId,aText,onSuccess,onFailed,userContext); }
Softeng.Cms.Web.BackOffice.Resource_AutoSave= function(aContentVersionId,aText,onSuccess,onFailed,userContext) {
/// <param name="aContentVersionId" type="String">System.Guid</param>
/// <param name="aText" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
Softeng.Cms.Web.BackOffice._staticInstance.Resource_AutoSave(aContentVersionId,aText,onSuccess,onFailed,userContext); }
Softeng.Cms.Web.BackOffice.Resource_RecoverDraft= function(aContentVersionId,onSuccess,onFailed,userContext) {
/// <param name="aContentVersionId" type="String">System.Guid</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
Softeng.Cms.Web.BackOffice._staticInstance.Resource_RecoverDraft(aContentVersionId,onSuccess,onFailed,userContext); }
Softeng.Cms.Web.BackOffice.RemoveLocalizatedContentVersion= function(aElementId,aCultureStr,onSuccess,onFailed,userContext) {
/// <param name="aElementId" type="String">System.Guid</param>
/// <param name="aCultureStr" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
Softeng.Cms.Web.BackOffice._staticInstance.RemoveLocalizatedContentVersion(aElementId,aCultureStr,onSuccess,onFailed,userContext); }
Softeng.Cms.Web.BackOffice.GetDisplayNameCulture= function(aCultureStr,onSuccess,onFailed,userContext) {
/// <param name="aCultureStr" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
Softeng.Cms.Web.BackOffice._staticInstance.GetDisplayNameCulture(aCultureStr,onSuccess,onFailed,userContext); }
Softeng.Cms.Web.BackOffice.CompileCSharp= function(aCSharp,onSuccess,onFailed,userContext) {
/// <param name="aCSharp" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
Softeng.Cms.Web.BackOffice._staticInstance.CompileCSharp(aCSharp,onSuccess,onFailed,userContext); }
Softeng.Cms.Web.BackOffice.CompileCSharpAll= function(aCSharp,onSuccess,onFailed,userContext) {
/// <param name="aCSharp" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
Softeng.Cms.Web.BackOffice._staticInstance.CompileCSharpAll(aCSharp,onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
if (typeof(Softeng.Cms.Web.ElementDeletionClientResult) === 'undefined') {
Softeng.Cms.Web.ElementDeletionClientResult=gtc("Softeng.Cms.Web.ElementDeletionClientResult");
Softeng.Cms.Web.ElementDeletionClientResult.registerClass('Softeng.Cms.Web.ElementDeletionClientResult');
}

