We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e14196 commit d3acc3fCopy full SHA for d3acc3f
1 file changed
base/src/main/java/com/smartdevicelink/proxy/rpc/RegisterAppInterface.java
@@ -621,15 +621,15 @@ public void setHashID(String hashID) {
621
* Gets the detailed information about the registered application
622
* @return appInfo - detailed information about the registered application
623
*/
624
- public String getAppInfo() {
625
- return getString(KEY_APP_INFO);
+ public AppInfo getAppInfo() {
+ return (AppInfo) getObject(AppInfo.class, KEY_APP_INFO);
626
}
627
628
/**
629
* Sets detailed information about the registered application
630
* @param appInfo - detailed information about the registered application
631
632
- public void setAppInfo(String appInfo) {
+ public void setAppInfo(AppInfo appInfo) {
633
setParameters(KEY_APP_INFO, appInfo);
634
635
0 commit comments