unregisterApp

Unregisters the specified application from the translation service.

Required System Actions

None

Usage

BPMTranslationServiceConfig.unregisterApp(appId)

Parameters

Parameter Type Description
appId String The name of the already-registered application, as deployed in Application Development, to be unregistered.

Sample Usage

 var yourModule = angular.module("CustomModule", ..
..
yourModule.run(['BPMTranslationServiceConfig',function(BPMTranslationServiceConfig){
 BPMTranslationServiceConfig.unregisterApp("MyCustomApp");
}]);