From e07013316897e2a7e9b0a12809ac084755a73d99 Mon Sep 17 00:00:00 2001 From: ShobhitAd Date: Wed, 14 Nov 2018 14:16:51 -0500 Subject: Made requested changes --- .../commands/mobile/set_cloudapp_properties_request.cc | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'src/components/application_manager/rpc_plugins/sdl_rpc_plugin') diff --git a/src/components/application_manager/rpc_plugins/sdl_rpc_plugin/src/commands/mobile/set_cloudapp_properties_request.cc b/src/components/application_manager/rpc_plugins/sdl_rpc_plugin/src/commands/mobile/set_cloudapp_properties_request.cc index 49cb7029c7..ca5a46e3dc 100644 --- a/src/components/application_manager/rpc_plugins/sdl_rpc_plugin/src/commands/mobile/set_cloudapp_properties_request.cc +++ b/src/components/application_manager/rpc_plugins/sdl_rpc_plugin/src/commands/mobile/set_cloudapp_properties_request.cc @@ -34,41 +34,41 @@ void SetCloudAppPropertiesRequest::Run() { return; } - smart_objects::SmartObject cloudapp_properties(smart_objects::SmartType_Map); + smart_objects::SmartObject cloud_app_properties(smart_objects::SmartType_Map); - cloudapp_properties[strings::msg_params][strings::app_name] = + cloud_app_properties[strings::msg_params][strings::app_name] = (*message_)[strings::msg_params][strings::app_name]; - cloudapp_properties[strings::msg_params][strings::app_id] = + cloud_app_properties[strings::msg_params][strings::app_id] = (*message_)[strings::msg_params][strings::app_id]; if ((*message_)[strings::msg_params].keyExists(strings::enabled)) { smart_objects::SmartObject enabled = (*message_)[strings::msg_params][strings::enabled]; - cloudapp_properties[strings::msg_params][strings::enabled] = enabled; + cloud_app_properties[strings::msg_params][strings::enabled] = enabled; } if ((*message_)[strings::msg_params].keyExists( strings::cloud_app_auth_token)) { smart_objects::SmartObject auth_token = (*message_)[strings::msg_params][strings::cloud_app_auth_token]; - cloudapp_properties[strings::msg_params][strings::cloud_app_auth_token] = + cloud_app_properties[strings::msg_params][strings::cloud_app_auth_token] = auth_token; } if ((*message_)[strings::msg_params].keyExists( strings::cloud_transport_type)) { smart_objects::SmartObject transport_type = (*message_)[strings::msg_params][strings::cloud_transport_type]; - cloudapp_properties[strings::msg_params][strings::cloud_transport_type] = + cloud_app_properties[strings::msg_params][strings::cloud_transport_type] = transport_type; } if ((*message_)[strings::msg_params].keyExists( strings::hybrid_app_preference)) { smart_objects::SmartObject hybrid_app_preference = (*message_)[strings::msg_params][strings::hybrid_app_preference]; - cloudapp_properties[strings::msg_params][strings::hybrid_app_preference] = + cloud_app_properties[strings::msg_params][strings::hybrid_app_preference] = hybrid_app_preference; } - policy_handler_.OnSetCloudAppProperties(cloudapp_properties); + policy_handler_.OnSetCloudAppProperties(cloud_app_properties); SendResponse(true, mobile_apis::Result::SUCCESS); } -- cgit v1.2.1