summaryrefslogtreecommitdiff
path: root/src/components/application_manager/include/application_manager/application_impl.h
diff options
context:
space:
mode:
authorJackLivio <jack@livio.io>2018-11-20 13:28:58 -0500
committerJackLivio <jack@livio.io>2018-11-20 13:28:58 -0500
commit4103779a0b69a029720141dbda934151e8321ba0 (patch)
tree2db3c4d6f15e371413cd67818b44bca79424db84 /src/components/application_manager/include/application_manager/application_impl.h
parentd8ad4e0427b33087340aa34cf1e1d3954cdb793e (diff)
downloadsdl_core-4103779a0b69a029720141dbda934151e8321ba0.tar.gz
Address comments, fix unit test failures
Diffstat (limited to 'src/components/application_manager/include/application_manager/application_impl.h')
-rw-r--r--src/components/application_manager/include/application_manager/application_impl.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/components/application_manager/include/application_manager/application_impl.h b/src/components/application_manager/include/application_manager/application_impl.h
index 26d8cd6159..8fa1553811 100644
--- a/src/components/application_manager/include/application_manager/application_impl.h
+++ b/src/components/application_manager/include/application_manager/application_impl.h
@@ -413,35 +413,35 @@ class ApplicationImpl : public virtual Application,
* @brief Get cloud app endpoint for websocket connection
* @return cloud app endpoint
*/
- const std::string cloud_app_endpoint() OVERRIDE;
+ const std::string& cloud_app_endpoint() const OVERRIDE;
/**
* @brief Get cloud app authtoken to be used in connection handshake after
* websocket open.
* @return cloud app authtoken
*/
- const std::string cloud_app_authtoken() OVERRIDE;
+ const std::string& cloud_app_authtoken() const OVERRIDE;
/**
* @brief Get cloud app tranpsport type. Defines the type of websocket
* connection used.
* @return cloud app transport type
*/
- const std::string cloud_app_transport_type() OVERRIDE;
+ const std::string& cloud_app_transport_type() const OVERRIDE;
/**
* @brief Get hybrid app preference. Defines behaviour for when a similar
* mobile and cloud app are connected simultaneously.
* @return hybrid app preference
*/
- const mobile_apis::HybridAppPreference::eType hybrid_app_preference()
- OVERRIDE;
+ const mobile_apis::HybridAppPreference::eType& hybrid_app_preference()
+ const OVERRIDE;
/**
* @brief Get cloud app certificate. Used for secured websocket connections.
* @return cloud app certificate.
*/
- const std::string cloud_app_certificate() OVERRIDE;
+ const std::string& cloud_app_certificate() const OVERRIDE;
/**
* @brief Set cloud app endpoint