Merge branch 'feature/PPVB_653' into 'develop'

global map property added

See merge request BPHV_MIPS/mvm_core!40
This commit is contained in:
Suresh, Kamlesh Jain 2019-11-11 12:20:31 -05:00
commit a256bfab1b
2 changed files with 6 additions and 0 deletions

View File

@ -33,6 +33,9 @@
// the response info
@property (nullable, strong, nonatomic) NSDictionary *responseInfoMap;
// the global map
@property (nullable, strong, nonatomic) NSDictionary *globalMap;
// any additional parameters
@property (nullable, strong, nonatomic) NSDictionary *systemParametersJSON;

View File

@ -367,6 +367,9 @@
// Sets the response info map
loadObject.responseInfoMap = [jsonDictionary dict:KeyResponseInfo];
// Sets the global map
loadObject.globalMap = [jsonDictionary dict:@"GlobalMap"];
// Update the session timer on a good response.
if (loadObject.extendsAppSession) {
[[MVMCoreSessionTimeHandler sharedSessionHandler] startSessionTimer];