Skip to content

Commit d3acc3f

Browse files
Update appInfo type in RAI
1 parent 6e14196 commit d3acc3f

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

base/src/main/java/com/smartdevicelink/proxy/rpc/RegisterAppInterface.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -621,15 +621,15 @@ public void setHashID(String hashID) {
621621
* Gets the detailed information about the registered application
622622
* @return appInfo - detailed information about the registered application
623623
*/
624-
public String getAppInfo() {
625-
return getString(KEY_APP_INFO);
624+
public AppInfo getAppInfo() {
625+
return (AppInfo) getObject(AppInfo.class, KEY_APP_INFO);
626626
}
627627

628628
/**
629629
* Sets detailed information about the registered application
630630
* @param appInfo - detailed information about the registered application
631631
*/
632-
public void setAppInfo(String appInfo) {
632+
public void setAppInfo(AppInfo appInfo) {
633633
setParameters(KEY_APP_INFO, appInfo);
634634
}
635635

0 commit comments

Comments
 (0)