Skip to content

Commit

Permalink
MOSIP-28575
Browse files Browse the repository at this point in the history
Signed-off-by: Jayesh Kharode <[email protected]>
  • Loading branch information
Jayesh Kharode committed Dec 5, 2023
1 parent 8d14d1f commit 5e53683
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public boolean accept(File pathname) {
};
File[] listDir = dir.listFiles(filter);
int numberOfSubfolders = listDir.length;
logger.info(listDir.length);


int min = 1;
int max = numberOfSubfolders;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1349,7 +1349,7 @@ public static void main(String[] args) {

Hashtable<Double,Properties> tbl1 = getIDSchemaLatestVersion(contextKey);
double schemaId = tbl1.keys().nextElement();
logger.info(schemaId);
// logger.info(schemaId);
List<MosipIDSchema> lstSchema = (List<MosipIDSchema>) tbl1.get(schemaId).get("schemaList");
List<String> reqdFields = (List<String>) tbl1.get(schemaId).get("requiredAttributes");

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ public Response getStagesByRID(String rid, String contextKey) throws Exception {
String uri= VariableManager.getVariableValue(contextKey,"ridStageStatus")+"?rid="+rid+"&langCode="+ VariableManager.getVariableValue(contextKey,"baselang");
String url = VariableManager.getVariableValue(contextKey,"urlBase").toString().trim() + uri ;
Response response =RestClient.getAdmin(url,new JSONObject(),new JSONObject(),contextKey);
logger.info(response);
logger.info(response.toString());
return response;

}
Expand Down

0 comments on commit 5e53683

Please sign in to comment.