Skip to content

Commit

Permalink
MOSIP-31138
Browse files Browse the repository at this point in the history
Signed-off-by: Pankaj Godiyal <[email protected]>
  • Loading branch information
pg-techno123 committed Jan 17, 2024
1 parent e937775 commit 875770d
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -685,9 +685,11 @@ else if (supervisorP != null && !supervisorP.equals(""))
} catch (Exception e) {
logger.error(e.getMessage());
}
VariableManager.setVariableValue(contextKey, "META_INFO-OPERATIONS_DATA-supervisorId", supervisorId);
VariableManager.setVariableValue(contextKey, "META_INFO-OPERATIONS_DATA-officerId", officerId);
VariableManager.setVariableValue(contextKey, "META_INFO-META_DATA-centerId", centerId);

VariableManager.setVariableValue(contextKey, "META_INFO-OPERATIONS_DATA-supervisorId", supervisorId != null ? supervisorId : "");
VariableManager.setVariableValue(contextKey, "META_INFO-OPERATIONS_DATA-officerId", officerId != null ? officerId : "");
VariableManager.setVariableValue(contextKey, "META_INFO-META_DATA-centerId", centerId != null ? centerId : "");

return true;
}

Expand Down

0 comments on commit 875770d

Please sign in to comment.