if (simulationId!=null)
{
/* you have to wait the end of execution */
/* Check the status */
Map resultStatus = meteorClientAPI.getStatus(statusParameters, apiAccessor.getProcessAPI(), apiAccessor.getCommandAPI(), jobExecution.tenantId);
String statusSimulation = (String) resultStatus.get( MeteorSimulation.CSTJSON_STATUS);
Integer percentAdvance = (Integer) resultStatus.get( MeteorSimulation.CSTJSON_PERCENTADVANCE );
if (MeteorSimulation.STATUS.DONE.toString().equals( statusSimulation )) {
/** we are successfull */
}
}