summaryrefslogtreecommitdiff
path: root/src/components/smart_objects/include/smart_objects/smart_object.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/smart_objects/include/smart_objects/smart_object.h')
-rw-r--r--src/components/smart_objects/include/smart_objects/smart_object.h27
1 files changed, 3 insertions, 24 deletions
diff --git a/src/components/smart_objects/include/smart_objects/smart_object.h b/src/components/smart_objects/include/smart_objects/smart_object.h
index ef3775e098..de058164bf 100644
--- a/src/components/smart_objects/include/smart_objects/smart_object.h
+++ b/src/components/smart_objects/include/smart_objects/smart_object.h
@@ -40,6 +40,7 @@
#include "smart_objects/smart_schema.h"
#include "utils/custom_string.h"
+#include "rpc_base/validation_report.h"
namespace NsSmartDeviceLink {
namespace NsSmartObjects {
@@ -681,11 +682,10 @@ class SmartObject FINAL {
/**
* @brief Validates object according to attached schema.
*
- * @param errorMessage string reference to be filled with an appropriate error
- *message if an error occurs
+ * @param report__ object for reporting errors during validation
* @return Result of validation.
*/
- Errors::eType validate(std::string& errorMessage);
+ Errors::eType validate(rpc::ValidationReport* report__);
/**
* @brief Sets new schema
@@ -710,21 +710,6 @@ class SmartObject FINAL {
SmartType getType() const;
/**
- * @brief Sets new key for this object
- *
- * @param std::string New key sequesnce
- * @return void
- **/
- void setKey(const std::string& NewKey);
-
- /**
- * @brief Returns current object type
- *
- * @return std::string
- **/
- std::string getKey() const;
-
- /**
* @brief Returns length of object
*
* If object has type string, array or map then method returns corresponded
@@ -1031,12 +1016,6 @@ class SmartObject FINAL {
* @brief Validation schema, attached to the object
**/
CSmartSchema m_schema;
-
- /**
- * @brief Key sequence that describes where the current object is within an
- *object structure, for debugging purposes
- **/
- std::string* m_key;
};
/**