summaryrefslogtreecommitdiffstats
path: root/parameter/ParameterMgr.cpp
diff options
context:
space:
mode:
authorKevin Rocard <kevinx.rocard@intel.com>2013-06-18 11:34:53 +0200
committerDavid Wagner <david.wagner@intel.com>2014-02-12 17:03:57 +0100
commitc02115715c6da36ea93c8f70d5214ade4ebf1b31 (patch)
tree4a84f130d3a68cb98df9c7e9561f12df0621a01f /parameter/ParameterMgr.cpp
parentcec86c1904a45a7027218adb3d34c8764bdfcc38 (diff)
downloadexternal_parameter-framework-c02115715c6da36ea93c8f70d5214ade4ebf1b31.zip
external_parameter-framework-c02115715c6da36ea93c8f70d5214ade4ebf1b31.tar.gz
external_parameter-framework-c02115715c6da36ea93c8f70d5214ade4ebf1b31.tar.bz2
Mark the getDomainsXML command as deprecated
BZ: 116973 The patch 15db1a7d renamed the command getDomainsXML to getDomainsWithSettingsXML. This changes the PFW API and breaks the PFW backward compatibility. Put the command back marked as deprecated. Both getDomainsXML and getDomainsWithSettingsXML are now supported. getDomainsXML output an deprecated message when used. Change-Id: Id838b6e02f003c789bb9cbe7a534e4985a4b348f Signed-off-by: Kevin Rocard <kevinx.rocard@intel.com> Reviewed-on: http://android.intel.com:8080/114071 Reviewed-by: cactus <cactus@intel.com> Reviewed-by: Denneulin, Guillaume <guillaume.denneulin@intel.com> Reviewed-by: De Chivre, Renaud <renaud.de.chivre@intel.com> Tested-by: Dixon, CharlesX <charlesx.dixon@intel.com> Reviewed-by: buildbot <buildbot@intel.com> Tested-by: buildbot <buildbot@intel.com>
Diffstat (limited to 'parameter/ParameterMgr.cpp')
-rw-r--r--parameter/ParameterMgr.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/parameter/ParameterMgr.cpp b/parameter/ParameterMgr.cpp
index 0bef3df..02bedb9 100644
--- a/parameter/ParameterMgr.cpp
+++ b/parameter/ParameterMgr.cpp
@@ -253,7 +253,11 @@ const CParameterMgr::SRemoteCommandParserItem CParameterMgr::gastRemoteCommandPa
"<xml configurable domains>", "Import domains including settings from XML string" },
/// Structure Export
{ "getSystemClassXML", &CParameterMgr::getSystemClassXMLCommmandProcess, 0 ,
- "", "Print parameter structure as XML" }
+ "", "Print parameter structure as XML" },
+ /// Deprecated Commands
+ { "getDomainsXML",
+ &CParameterMgr::getConfigurableDomainsWithSettingsXMLCommmandProcess, 0,
+ "", "DEPRECATED COMMAND, please use getDomainsWithSettingsXML" },
};