From e0059e109c1f062c1f792d70c0a99b8c84bb91f1 Mon Sep 17 00:00:00 2001 From: Inhong Date: Mon, 7 Oct 2019 11:12:56 +0900 Subject: [PATCH] [VoiceControlManager] Add tags for missing feature and privilege (#1031) * [VoiceControlManager] Add tags for missing feature and privilege * [VoiceControlManager] Add tags for missing feature and privilege Signed-off-by: InHong Han * [VoiceControlManager] Add tags for missing feature and privilege Signed-off-by: InHong Han * [VoiceControlManager] Add tags for missing feature and privilege Signed-off-by: InHong Han --- .../Tizen.Uix.VoiceControlManager/VoiceCommand.cs | 24 +- .../VoiceCommandsGroup.cs | 5 +- .../VoiceControlManagerClient.cs | 355 +++++++++++++-------- 3 files changed, 236 insertions(+), 148 deletions(-) mode change 100755 => 100644 src/Tizen.Uix.VoiceControlManager/Tizen.Uix.VoiceControlManager/VoiceCommand.cs mode change 100755 => 100644 src/Tizen.Uix.VoiceControlManager/Tizen.Uix.VoiceControlManager/VoiceCommandsGroup.cs mode change 100755 => 100644 src/Tizen.Uix.VoiceControlManager/Tizen.Uix.VoiceControlManager/VoiceControlManagerClient.cs diff --git a/src/Tizen.Uix.VoiceControlManager/Tizen.Uix.VoiceControlManager/VoiceCommand.cs b/src/Tizen.Uix.VoiceControlManager/Tizen.Uix.VoiceControlManager/VoiceCommand.cs old mode 100755 new mode 100644 index 0774c9e..b46c551 --- a/src/Tizen.Uix.VoiceControlManager/Tizen.Uix.VoiceControlManager/VoiceCommand.cs +++ b/src/Tizen.Uix.VoiceControlManager/Tizen.Uix.VoiceControlManager/VoiceCommand.cs @@ -73,11 +73,11 @@ namespace Tizen.Uix.VoiceControlManager /// The public constructor. /// /// 6 - /// - /// This can occur due to the following reasons: - /// 1) This exception can be due to an invalid state. - /// 2) This exception can be due to out of memory. - /// + /// http://tizen.org/privilege/recorder + /// public + /// http://tizen.org/feature/microphone + /// http://tizen.org/feature/speech.control + /// This exception can be due to out of memory. /// This exception can be due to permission denied. /// The required feature is not supported. public VoiceCommand() @@ -132,7 +132,12 @@ namespace Tizen.Uix.VoiceControlManager /// Gets or sets the command type. /// /// 6 + /// http://tizen.org/privilege/recorder + /// public + /// http://tizen.org/feature/microphone + /// http://tizen.org/feature/speech.control /// If you do not set the command type, the default value is undefined. You should set the type if the command is valid. + /// This exception can be due to an invalid parameter. /// This exception can be due to permission denied. /// The required feature is not supported. public CommandType CommandType @@ -169,8 +174,10 @@ namespace Tizen.Uix.VoiceControlManager /// Gets or sets the command format. /// /// 6 + /// http://tizen.org/feature/microphone + /// http://tizen.org/feature/speech.control /// The default format is Fixed. - /// This exception can be due to permission denied. + /// This exception can be due to an invalid parameter. /// The required feature is not supported. public CommandFormat Format { @@ -201,6 +208,11 @@ namespace Tizen.Uix.VoiceControlManager /// A get empty string will be returned in case of some internal error. /// /// 6 + /// http://tizen.org/privilege/recorder + /// public + /// http://tizen.org/feature/microphone + /// http://tizen.org/feature/speech.control + /// This exception can be due to an invalid parameter. /// This exception can be due to permission denied. /// The required feature is not supported. public string Command diff --git a/src/Tizen.Uix.VoiceControlManager/Tizen.Uix.VoiceControlManager/VoiceCommandsGroup.cs b/src/Tizen.Uix.VoiceControlManager/Tizen.Uix.VoiceControlManager/VoiceCommandsGroup.cs old mode 100755 new mode 100644 index b2ff135..bc37931 --- a/src/Tizen.Uix.VoiceControlManager/Tizen.Uix.VoiceControlManager/VoiceCommandsGroup.cs +++ b/src/Tizen.Uix.VoiceControlManager/Tizen.Uix.VoiceControlManager/VoiceCommandsGroup.cs @@ -37,8 +37,11 @@ namespace Tizen.Uix.VoiceControlManager /// The public constructor. /// /// 6 + /// http://tizen.org/privilege/recorder + /// public + /// http://tizen.org/feature/microphone + /// http://tizen.org/feature/speech.control /// This exception can be due to out of memory. - /// This exception can be due to an invalid parameter. /// This exception can be due to permission denied. /// The required feature is not supported. public VoiceCommandsGroup() diff --git a/src/Tizen.Uix.VoiceControlManager/Tizen.Uix.VoiceControlManager/VoiceControlManagerClient.cs b/src/Tizen.Uix.VoiceControlManager/Tizen.Uix.VoiceControlManager/VoiceControlManagerClient.cs old mode 100755 new mode 100644 index 21e7c4b..9a3b47c --- a/src/Tizen.Uix.VoiceControlManager/Tizen.Uix.VoiceControlManager/VoiceControlManagerClient.cs +++ b/src/Tizen.Uix.VoiceControlManager/Tizen.Uix.VoiceControlManager/VoiceControlManagerClient.cs @@ -425,7 +425,8 @@ namespace Tizen.Uix.VoiceControlManager /// Command list /// The Recognized text /// Engine message - /// + /// Valid commands + /// 6 public delegate IEnumerable SelectRecognizedCommandsDelegate(IEnumerable commands, string recognizedText, string message); /// @@ -434,10 +435,15 @@ namespace Tizen.Uix.VoiceControlManager /// 6 /// http://tizen.org/privilege/voicecontrol.manager /// http://tizen.org/privilege/recorder - /// public - /// http://tizen.org/feature/speech.control + /// platform + /// http://tizen.org/feature/speech.control_manager /// http://tizen.org/feature/microphone - /// This exception can be due to operation failed. + /// + /// This can occur due to the following reasons: + /// 1) This exception can be due to out of memory. + /// 2) This exception can be due to operation failed. + /// + /// This exception can be due to permission denied. /// The required feature is not supported. /// /// The State will be Initialized. @@ -457,10 +463,12 @@ namespace Tizen.Uix.VoiceControlManager /// /// 6 /// http://tizen.org/privilege/voicecontrol.manager - /// public - /// http://tizen.org/feature/speech.control + /// http://tizen.org/privilege/recorder + /// platform + /// http://tizen.org/feature/speech.control_manager /// http://tizen.org/feature/microphone /// This exception can be due to an invalid state. + /// This exception can be due to permission denied. /// The required feature is not supported. /// /// The State will be None. @@ -480,14 +488,11 @@ namespace Tizen.Uix.VoiceControlManager /// /// 6 /// http://tizen.org/privilege/voicecontrol.manager - /// public - /// http://tizen.org/feature/speech.control + /// http://tizen.org/privilege/recorder + /// platform + /// http://tizen.org/feature/speech.control_manager /// http://tizen.org/feature/microphone - /// - /// This can occur due to the following reasons: - /// 1) This exception can be due to an invalid state. - /// 2) This exception can be due to operation failed. - /// + /// This exception can be due to an invalid state. /// This exception can be due to permission denied. /// The required feature is not supported. ///
@@ -511,8 +516,9 @@ namespace Tizen.Uix.VoiceControlManager
         /// 
         ///  6 
         /// http://tizen.org/privilege/voicecontrol.manager
-        /// public
-        /// http://tizen.org/feature/speech.control
+        /// http://tizen.org/privilege/recorder
+        /// platform
+        /// http://tizen.org/feature/speech.control_manager
         /// http://tizen.org/feature/microphone
         /// This exception can be due to an invalid state.
         /// This exception can be due to permission denied.
@@ -541,17 +547,14 @@ namespace Tizen.Uix.VoiceControlManager
         /// 
         ///  6 
         /// http://tizen.org/privilege/voicecontrol.manager
-        /// public
+        /// http://tizen.org/privilege/recorder
+        /// platform
         /// 
         /// List of strings for supported languages.
         /// 
-        /// http://tizen.org/feature/speech.control
+        /// http://tizen.org/feature/speech.control_manager
         /// http://tizen.org/feature/microphone
-        /// 
-        /// This can occur due to the following reasons:
-        /// 1) This exception can be due to an invalid state.
-        /// 2) This exception can be due to operation failed.
-        /// 
+        /// This exception can be due to an invalid state.
         /// This exception can be due to permission denied.
         /// The required feature is not supported.
         /// 
@@ -585,10 +588,13 @@ namespace Tizen.Uix.VoiceControlManager
         /// 
         ///  6 
         /// http://tizen.org/privilege/voicecontrol.manager
-        /// public
-        /// http://tizen.org/feature/speech.control
+        /// http://tizen.org/privilege/recorder
+        /// platform
+        /// http://tizen.org/feature/speech.control_manager
         /// http://tizen.org/feature/microphone
         /// The current language in voice control.
+        /// This exception can be due to an invalid state.
+        /// This exception can be due to permission denied.
         /// The required feature is not supported.
         /// 
         /// The state must be initialized or ready.
@@ -615,10 +621,13 @@ namespace Tizen.Uix.VoiceControlManager
         /// 
         ///  6 
         /// http://tizen.org/privilege/voicecontrol.manager
-        /// public
-        /// http://tizen.org/feature/speech.control
+        /// http://tizen.org/privilege/recorder
+        /// platform
+        /// http://tizen.org/feature/speech.control_manager
         /// http://tizen.org/feature/microphone
         /// The current state of the voice control client.
+        /// This exception can be due to an invalid state.
+        /// This exception can be due to permission denied.
         /// The required feature is not supported.
         /// 
         /// The state must be initialized or ready.
@@ -645,10 +654,17 @@ namespace Tizen.Uix.VoiceControlManager
         /// 
         ///  6 
         /// http://tizen.org/privilege/voicecontrol.manager
-        /// public
-        /// http://tizen.org/feature/speech.control
+        /// http://tizen.org/privilege/recorder
+        /// platform
+        /// http://tizen.org/feature/speech.control_manager
         /// http://tizen.org/feature/microphone
         /// The current state of the voice control service.
+        /// 
+        /// This can occur due to the following reasons:
+        /// 1) This exception can be due to an invalid state.
+        /// 2) This exception can be due to operation failed.
+        /// 
+        /// This exception can be due to permission denied.
         /// The required feature is not supported.
         /// 
         /// The state must be ready.
@@ -675,13 +691,15 @@ namespace Tizen.Uix.VoiceControlManager
         /// 
         ///  6 
         /// http://tizen.org/privilege/voicecontrol.manager
-        /// public
-        /// http://tizen.org/feature/speech.control
+        /// http://tizen.org/privilege/recorder
+        /// platform
+        /// http://tizen.org/feature/speech.control_manager
         /// http://tizen.org/feature/microphone
         /// The command format
         /// The result status, true if supported
         /// This exception can be due to an invalid state.
         /// This exception can be due to an invalid parameter.
+        /// This exception can be due to permission denied.
         /// The required feature is not supported.
         /// 
         /// The State must be Ready.
@@ -703,12 +721,14 @@ namespace Tizen.Uix.VoiceControlManager
         /// 
         ///  6 
         /// http://tizen.org/privilege/voicecontrol.manager
-        /// public
-        /// http://tizen.org/feature/speech.control
+        /// http://tizen.org/privilege/recorder
+        /// platform
+        /// http://tizen.org/feature/speech.control_manager
         /// http://tizen.org/feature/microphone
         /// Command list
         /// This exception can be due to invalid state.
         /// This exception can be due to an invalid parameter.
+        /// This exception can be due to permission denied.
         /// The required feature is not supported.
         /// 
         /// The State should be Ready
@@ -731,10 +751,12 @@ namespace Tizen.Uix.VoiceControlManager
         /// 
         ///  6 
         /// http://tizen.org/privilege/voicecontrol.manager
-        /// public
-        /// http://tizen.org/feature/speech.control
+        /// http://tizen.org/privilege/recorder
+        /// platform
+        /// http://tizen.org/feature/speech.control_manager
         /// http://tizen.org/feature/microphone
         /// This exception can be due to invalid state.
+        /// This exception can be due to permission denied.
         /// The required feature is not supported.
         /// 
         /// The State should be Ready
@@ -754,17 +776,15 @@ namespace Tizen.Uix.VoiceControlManager
         /// 
         ///  6 
         /// http://tizen.org/privilege/voicecontrol.manager
-        /// public
-        /// http://tizen.org/feature/speech.control
+        /// http://tizen.org/privilege/recorder
+        /// platform
+        /// http://tizen.org/feature/speech.control_manager
         /// http://tizen.org/feature/microphone
         /// File Path
         /// Command type
-        /// 
-        /// This can occur due to the following reasons:
-        /// 1) This exception can be due to an invalid state.
-        /// 2) This exception can be due to operation failed.
-        /// 
+        /// This exception can be due to invalid state.
         /// This exception can be due to an invalid parameter.
+        /// This exception can be due to permission denied.
         /// The required feature is not supported.
         /// 
         /// The State should be Ready
@@ -784,8 +804,9 @@ namespace Tizen.Uix.VoiceControlManager
         /// 
         ///  6 
         /// http://tizen.org/privilege/voicecontrol.manager
-        /// public
-        /// http://tizen.org/feature/speech.control
+        /// http://tizen.org/privilege/recorder
+        /// platform
+        /// http://tizen.org/feature/speech.control_manager
         /// http://tizen.org/feature/microphone>
         /// 
         /// The Command List else null in case of no System Commands
@@ -795,7 +816,7 @@ namespace Tizen.Uix.VoiceControlManager
         /// 1) This exception can be due to an invalid state.
         /// 2) This exception can be due to operation failed.
         /// 
-        /// This exception can be due to an invalid parameter.
+        /// This exception can be due to permission denied.
         /// The required feature is not supported.
         /// 
         /// The State should be Ready
@@ -822,20 +843,18 @@ namespace Tizen.Uix.VoiceControlManager
         }
 
         /// 
-        /// Sets or Gets the Audio In Type
-        /// the Values of the strings can be "VC_AUDIO_ID_BLUETOOTH" or "VC_AUDIO_ID_MSF"
+        /// Sets or Gets the Audio In Type.
+        /// The Values of the strings can be "VC_AUDIO_ID_BLUETOOTH" or "VC_AUDIO_ID_MSF"
         /// 
         ///  6 
         /// http://tizen.org/privilege/voicecontrol.manager
-        /// public
-        /// http://tizen.org/feature/speech.control
+        /// http://tizen.org/privilege/recorder
+        /// platform
+        /// http://tizen.org/feature/speech.control_manager
         /// http://tizen.org/feature/microphone
-        /// 
-        /// This can occur due to the following reasons:
-        /// 1) This exception can be due to an invalid state.
-        /// 2) This exception can be due to operation failed.
-        /// 
+        /// This exception can be due to invalid state.
         /// This exception can be due to an invalid parameter.
+        /// This exception can be due to permission denied.
         /// The required feature is not supported.
         /// 
         /// The State must be Ready.
@@ -871,11 +890,13 @@ namespace Tizen.Uix.VoiceControlManager
         /// 
         ///  6 
         /// http://tizen.org/privilege/voicecontrol.manager
-        /// public
-        /// http://tizen.org/feature/speech.control
+        /// http://tizen.org/privilege/recorder
+        /// platform
+        /// http://tizen.org/feature/speech.control_manager
         /// http://tizen.org/feature/microphone
         /// This exception can be due to an invalid state.
         /// This exception can be due to an invalid parameter.
+        /// This exception can be due to permission denied.
         /// The required feature is not supported.
         /// 
         /// The State must be Ready.
@@ -911,8 +932,9 @@ namespace Tizen.Uix.VoiceControlManager
         /// 
         ///  6 
         /// http://tizen.org/privilege/voicecontrol.manager
-        /// public
-        /// http://tizen.org/feature/speech.control
+        /// http://tizen.org/privilege/recorder
+        /// platform
+        /// http://tizen.org/feature/speech.control_manager
         /// http://tizen.org/feature/microphone
         /// Private key
         /// Private data
@@ -920,9 +942,10 @@ namespace Tizen.Uix.VoiceControlManager
         /// This can occur due to the following reasons:
         /// 1) This exception can be due to an invalid state.
         /// 2) This exception can be due to operation failed.
-        /// 3) This exception can be due to out of memory.
         /// 
-        ///  The required feature is not supported.
+        /// This exception can be due to an invalid parameter.
+        /// This exception can be due to permission denied.
+        ///  The required feature is not supported.
         /// 
         /// The State must be Ready.
         /// 
@@ -941,17 +964,15 @@ namespace Tizen.Uix.VoiceControlManager /// /// 6 /// http://tizen.org/privilege/voicecontrol.manager - /// public - /// http://tizen.org/feature/speech.control + /// http://tizen.org/privilege/recorder + /// platform + /// http://tizen.org/feature/speech.control_manager /// http://tizen.org/feature/microphone /// Private key /// Private data - /// - /// This can occur due to the following reasons: - /// 1) This exception can be due to an invalid state. - /// 2) This exception can be due to operation failed. - /// 3) This exception can be due to out of memory. - /// + /// This exception can be due to an invalid state. + /// This exception can be due to an invalid parameter. + /// This exception can be due to permission denied. /// The required feature is not supported. ///
         /// The State must be Ready.
@@ -973,8 +994,9 @@ namespace Tizen.Uix.VoiceControlManager
         /// 
         ///  6 
         /// http://tizen.org/privilege/voicecontrol.manager
-        /// public
-        /// http://tizen.org/feature/speech.control
+        /// http://tizen.org/privilege/recorder
+        /// platform
+        /// http://tizen.org/feature/speech.control_manager
         /// http://tizen.org/feature/microphone
         /// Event type
         /// The string for send event
@@ -982,9 +1004,10 @@ namespace Tizen.Uix.VoiceControlManager
         /// This can occur due to the following reasons:
         /// 1) This exception can be due to an invalid state.
         /// 2) This exception can be due to operation failed.
-        /// 3) This exception can be due to out of memory.
         /// 
-        /// The required feature is not supported.
+        /// This exception can be due to an invalid parameter.
+        /// This exception can be due to permission denied.
+        ///  The required feature is not supported.
         /// 
         /// The State must be Ready.
         /// 
@@ -1003,8 +1026,9 @@ namespace Tizen.Uix.VoiceControlManager /// /// 6 /// http://tizen.org/privilege/voicecontrol.manager - /// public - /// http://tizen.org/feature/speech.control + /// http://tizen.org/privilege/recorder + /// platform + /// http://tizen.org/feature/speech.control_manager /// http://tizen.org/feature/microphone /// A specific engine's app id /// A engine service user request event @@ -1014,6 +1038,7 @@ namespace Tizen.Uix.VoiceControlManager /// 1) This exception can be due to an invalid state. /// 2) This exception can be due to operation failed. /// + /// This exception can be due to an invalid parameter. /// This exception can be due to permission denied. /// The required feature is not supported. public static void SendSpecificEngineRequest(string engineAppId, string evt, string request) @@ -1031,16 +1056,19 @@ namespace Tizen.Uix.VoiceControlManager /// /// 6 /// http://tizen.org/privilege/voicecontrol.manager - /// public - /// http://tizen.org/feature/speech.control + /// http://tizen.org/privilege/recorder + /// platform + /// http://tizen.org/feature/speech.control_manager /// http://tizen.org/feature/microphone /// Exclusive command option /// /// This can occur due to the following reasons: /// 1) This exception can be due to an invalid state. /// 2) This exception can be due to operation failed. - /// 3) This exception can be due to out of memory. + /// 3) This exception can be due to progress to recording is not finished. /// + /// This exception can be due to no answer from service. + /// This exception can be due to permission denied. /// The required feature is not supported. ///
         /// The State must be Ready.
@@ -1063,14 +1091,20 @@ namespace Tizen.Uix.VoiceControlManager
         /// 
         ///  6 
         /// http://tizen.org/privilege/voicecontrol.manager
-        /// public
-        /// http://tizen.org/feature/speech.control
+        /// http://tizen.org/privilege/recorder
+        /// platform
+        /// http://tizen.org/feature/speech.control_manager
         /// http://tizen.org/feature/microphone
         /// 
         /// This can occur due to the following reasons:
         /// 1) This exception can be due to an invalid state.
         /// 2) This exception can be due to operation failed.
+        /// 3) This exception can be due to progress to ready is not finished.
+        /// 4) This exception can be due to progress to recording is not finished.
+        /// 5) This exception can be due to progress to processing is not finished.
         /// 
+        /// This exception can be due to no answer from service.
+        /// This exception can be due to permission denied.
         /// The required feature is not supported.
         /// 
         /// The State must be Recording.
@@ -1093,15 +1127,20 @@ namespace Tizen.Uix.VoiceControlManager
         /// 
         ///  6 
         /// http://tizen.org/privilege/voicecontrol.manager
-        /// public
-        /// http://tizen.org/feature/speech.control
+        /// http://tizen.org/privilege/recorder
+        /// platform
+        /// http://tizen.org/feature/speech.control_manager
         /// http://tizen.org/feature/microphone
         /// 
         /// This can occur due to the following reasons:
         /// 1) This exception can be due to an invalid state.
         /// 2) This exception can be due to operation failed.
-        /// 3) This exception can be due to out of memory.
+        /// 3) This exception can be due to progress to ready is not finished.
+        /// 4) This exception can be due to progress to recording is not finished.
+        /// 5) This exception can be due to progress to processing is not finished.
         /// 
+        /// This exception can be due to no answer from service.
+        /// This exception can be due to permission denied.
         /// The required feature is not supported.
         /// 
         /// The State must be Recording or Processing.
@@ -1124,9 +1163,12 @@ namespace Tizen.Uix.VoiceControlManager
         /// 
         ///  6 
         /// http://tizen.org/privilege/voicecontrol.manager
-        /// public
-        /// http://tizen.org/feature/speech.control
+        /// http://tizen.org/privilege/recorder
+        /// platform
+        /// http://tizen.org/feature/speech.control_manager
         /// http://tizen.org/feature/microphone
+        /// This exception can be due to an invalid state.
+        /// This exception can be due to permission denied.
         /// The required feature is not supported.
         /// 
         /// The Service State must be Recording.
@@ -1153,12 +1195,13 @@ namespace Tizen.Uix.VoiceControlManager
         /// 
         ///  6 
         /// http://tizen.org/privilege/voicecontrol.manager
-        /// public
-        /// http://tizen.org/feature/speech.control
+        /// http://tizen.org/privilege/recorder
+        /// platform
+        /// http://tizen.org/feature/speech.control_manager
         /// http://tizen.org/feature/microphone
         /// The delegate for setting valid commands.
-        /// This exception can be due to an invalid parameter.
         /// This exception can be due to an invalid state.
+        /// This exception can be due to an invalid parameter.
         /// This exception can be due to permission denied.
         /// The required feature is not supported.
         public static void SetRecognizedCommandsSelectionDelegate(SelectRecognizedCommandsDelegate recognizedCommandsDelegate)
@@ -1192,9 +1235,11 @@ namespace Tizen.Uix.VoiceControlManager
         /// 
         ///  6 
         /// http://tizen.org/privilege/voicecontrol.manager
-        /// public
-        /// http://tizen.org/feature/speech.control
+        /// http://tizen.org/privilege/recorder
+        /// platform
+        /// http://tizen.org/feature/speech.control_manager
         /// http://tizen.org/feature/microphone
+        /// This exception can be due to permission denied.
         /// The required feature is not supported.
         /// 
         /// The State should be Initialized
@@ -1233,9 +1278,11 @@ namespace Tizen.Uix.VoiceControlManager
         /// 
         ///  6 
         /// http://tizen.org/privilege/voicecontrol.manager
-        /// public
-        /// http://tizen.org/feature/speech.control
+        /// http://tizen.org/privilege/recorder
+        /// platform
+        /// http://tizen.org/feature/speech.control_manager
         /// http://tizen.org/feature/microphone
+        /// This exception can be due to permission denied.
         /// The required feature is not supported.
         /// 
         /// The State should be Initialized
@@ -1280,9 +1327,11 @@ namespace Tizen.Uix.VoiceControlManager
         /// 
         ///  6 
         /// http://tizen.org/privilege/voicecontrol.manager
-        /// public
-        /// http://tizen.org/feature/speech.control
+        /// http://tizen.org/privilege/recorder
+        /// platform
+        /// http://tizen.org/feature/speech.control_manager
         /// http://tizen.org/feature/microphone
+        /// This exception can be due to permission denied.
         /// The required feature is not supported.
         /// 
         /// The State should be Initialized
@@ -1329,9 +1378,11 @@ namespace Tizen.Uix.VoiceControlManager
         /// 
         ///  6 
         /// http://tizen.org/privilege/voicecontrol.manager
-        /// public
-        /// http://tizen.org/feature/speech.control
+        /// http://tizen.org/privilege/recorder
+        /// platform
+        /// http://tizen.org/feature/speech.control_manager
         /// http://tizen.org/feature/microphone
+        /// This exception can be due to permission denied.
         /// The required feature is not supported.
         /// 
         /// The State should be Initialized
@@ -1383,9 +1434,11 @@ namespace Tizen.Uix.VoiceControlManager
         /// 
         ///  6 
         /// http://tizen.org/privilege/voicecontrol.manager
-        /// public
-        /// http://tizen.org/feature/speech.control
+        /// http://tizen.org/privilege/recorder
+        /// platform
+        /// http://tizen.org/feature/speech.control_manager
         /// http://tizen.org/feature/microphone
+        /// This exception can be due to permission denied.
         /// The required feature is not supported.
         /// 
         /// The state must be initialized.
@@ -1429,9 +1482,11 @@ namespace Tizen.Uix.VoiceControlManager
         /// 
         ///  6 
         /// http://tizen.org/privilege/voicecontrol.manager
-        /// public
-        /// http://tizen.org/feature/speech.control
+        /// http://tizen.org/privilege/recorder
+        /// platform
+        /// http://tizen.org/feature/speech.control_manager
         /// http://tizen.org/feature/microphone
+        /// This exception can be due to permission denied.
         /// The required feature is not supported.
         /// 
         /// The state must be initialized.
@@ -1475,9 +1530,11 @@ namespace Tizen.Uix.VoiceControlManager
         /// 
         ///  6 
         /// http://tizen.org/privilege/voicecontrol.manager
-        /// public
-        /// http://tizen.org/feature/speech.control
+        /// http://tizen.org/privilege/recorder
+        /// platform
+        /// http://tizen.org/feature/speech.control_manager
         /// http://tizen.org/feature/microphone
+        /// This exception can be due to permission denied.
         /// The required feature is not supported.
         /// 
         /// The State should be Initialized
@@ -1520,9 +1577,11 @@ namespace Tizen.Uix.VoiceControlManager
         /// 
         ///  6 
         /// http://tizen.org/privilege/voicecontrol.manager
-        /// public
-        /// http://tizen.org/feature/speech.control
+        /// http://tizen.org/privilege/recorder
+        /// platform
+        /// http://tizen.org/feature/speech.control_manager
         /// http://tizen.org/feature/microphone
+        /// This exception can be due to permission denied.
         /// The required feature is not supported.
         /// 
         /// The state must be initialized.
@@ -1568,9 +1627,11 @@ namespace Tizen.Uix.VoiceControlManager
         /// 
         ///  6 
         /// http://tizen.org/privilege/voicecontrol.manager
-        /// public
-        /// http://tizen.org/feature/speech.control
+        /// http://tizen.org/privilege/recorder
+        /// platform
+        /// http://tizen.org/feature/speech.control_manager
         /// http://tizen.org/feature/microphone
+        /// This exception can be due to permission denied.
         /// The required feature is not supported.
         /// 
         /// The state must be initialized.
@@ -1612,11 +1673,12 @@ namespace Tizen.Uix.VoiceControlManager
         /// 
         /// Event to be called when conversation requests.
         /// 
-        ///  6 
         /// http://tizen.org/privilege/voicecontrol.manager
-        /// public
-        /// http://tizen.org/feature/speech.control
+        /// http://tizen.org/privilege/recorder
+        /// platform
+        /// http://tizen.org/feature/speech.control_manager
         /// http://tizen.org/feature/microphone
+        /// This exception can be due to permission denied.
         /// The required feature is not supported.
         /// 
         /// The State should be Initialized
@@ -1662,11 +1724,18 @@ namespace Tizen.Uix.VoiceControlManager
         /// 
         ///  6 
         /// http://tizen.org/privilege/voicecontrol.manager
-        /// public
-        /// http://tizen.org/feature/speech.control
+        /// http://tizen.org/privilege/recorder
+        /// platform
+        /// http://tizen.org/feature/speech.control_manager
         /// http://tizen.org/feature/microphone
         /// Command Type
-        /// This exception can be due to invalid state.
+        /// 
+        /// This can occur due to the following reasons:
+        /// 1) This exception can be due to an invalid state.
+        /// 2) This exception can be due to operation failed.
+        /// 
+        /// This exception can be due to no answer from service.
+        /// This exception can be due to permission denied.
         /// The required feature is not supported.
         /// 
         /// The State should be Ready
@@ -1686,11 +1755,19 @@ namespace Tizen.Uix.VoiceControlManager
         /// 
         ///  6 
         /// http://tizen.org/privilege/voicecontrol.manager
-        /// public
-        /// http://tizen.org/feature/speech.control
+        /// http://tizen.org/privilege/recorder
+        /// platform
+        /// http://tizen.org/feature/speech.control_manager
         /// http://tizen.org/feature/microphone
         /// Command Type
-        /// This exception can be due to invalid state.
+        /// 
+        /// This can occur due to the following reasons:
+        /// 1) This exception can be due to an invalid state.
+        /// 2) This exception can be due to operation failed.
+        /// 
+        /// This exception can be due to no answer from service.
+        /// This exception can be due to an invalid parameter.
+        /// This exception can be due to permission denied.
         /// The required feature is not supported.
         /// 
         /// The State should be Ready
@@ -1710,9 +1787,11 @@ namespace Tizen.Uix.VoiceControlManager
         /// 
         ///  6 
         /// http://tizen.org/privilege/voicecontrol.manager
-        /// public
-        /// http://tizen.org/feature/speech.control
+        /// http://tizen.org/privilege/recorder
+        /// platform
+        /// http://tizen.org/feature/speech.control_manager
         /// http://tizen.org/feature/microphone
+        /// This exception can be due to permission denied.
         /// The required feature is not supported.
         /// 
         /// The State should be Initialized
@@ -1759,12 +1838,13 @@ namespace Tizen.Uix.VoiceControlManager
         /// 
         ///  6 
         /// http://tizen.org/privilege/voicecontrol.manager
-        /// public
-        /// http://tizen.org/feature/speech.control
+        /// http://tizen.org/privilege/recorder
+        /// platform
+        /// http://tizen.org/feature/speech.control_manager
         /// http://tizen.org/feature/microphone
         /// The delegate for setting private data
-        /// This exception can be due to an invalid parameter.
         /// This exception can be due to an invalid state.
+        /// This exception can be due to an invalid parameter.
         /// This exception can be due to permission denied.
         /// The required feature is not supported.
         public static void SetPrivateDataProviderDelegate(PrivateDataProvider privateDataDelegate)
@@ -1794,9 +1874,11 @@ namespace Tizen.Uix.VoiceControlManager
         /// 
         ///  6 
         /// http://tizen.org/privilege/voicecontrol.manager
-        /// public
-        /// http://tizen.org/feature/speech.control
+        /// http://tizen.org/privilege/recorder
+        /// platform
+        /// http://tizen.org/feature/speech.control_manager
         /// http://tizen.org/feature/microphone
+        /// This exception can be due to permission denied.
         /// The required feature is not supported.
         /// 
         /// The State should be Initialized
@@ -1840,9 +1922,11 @@ namespace Tizen.Uix.VoiceControlManager
         /// 
         ///  6 
         /// http://tizen.org/privilege/voicecontrol.manager
-        /// public
-        /// http://tizen.org/feature/speech.control
+        /// http://tizen.org/privilege/recorder
+        /// platform
+        /// http://tizen.org/feature/speech.control_manager
         /// http://tizen.org/feature/microphone
+        /// This exception can be due to permission denied.
         /// The required feature is not supported.
         /// 
         /// The State should be Initialized
@@ -1888,14 +1972,11 @@ namespace Tizen.Uix.VoiceControlManager
         /// 
         ///  6 
         /// http://tizen.org/privilege/voicecontrol.manager
-        /// public
-        /// http://tizen.org/feature/speech.control
+        /// http://tizen.org/privilege/recorder
+        /// platform
+        /// http://tizen.org/feature/speech.control_manager
         /// http://tizen.org/feature/microphone
-        /// 
-        /// This can occur due to the following reasons:
-        /// 1) This exception can be due to an invalid state.
-        /// 2) This exception can be due to operation failed.
-        /// 
+        /// This exception can be due to an invalid state.
         /// This exception can be due to permission denied.
         /// The required feature is not supported.
         /// 
@@ -1916,14 +1997,11 @@ namespace Tizen.Uix.VoiceControlManager
         /// 
         ///  6 
         /// http://tizen.org/privilege/voicecontrol.manager
-        /// public
-        /// http://tizen.org/feature/speech.control
+        /// http://tizen.org/privilege/recorder
+        /// platform
+        /// http://tizen.org/feature/speech.control_manager
         /// http://tizen.org/feature/microphone
-        /// 
-        /// This can occur due to the following reasons:
-        /// 1) This exception can be due to an invalid state.
-        /// 2) This exception can be due to operation failed.
-        /// 
+        /// This exception can be due to an invalid state.
         /// This exception can be due to permission denied.
         /// The required feature is not supported.
         /// 
@@ -1943,11 +2021,6 @@ namespace Tizen.Uix.VoiceControlManager
         /// Called when the vc client sends audio streaming for TTS feedback.
         /// 
         ///  6 
-        /// http://tizen.org/privilege/voicecontrol.manager
-        /// public
-        /// http://tizen.org/feature/speech.control
-        /// http://tizen.org/feature/microphone
-        /// The required feature is not supported.
         /// 
         /// The State should be Initialized
         /// 
-- 2.7.4