I have now discovered what was going wrong in my r...
# tornadofx
e
I have now discovered what was going wrong in my rest call, I created a
params
variable to hold my query strings parameters in order to build my Uri, fun fact my variable was not being used, there was another
params
defined in component.kt that was being used , that means I was not calling the correct endpoint. When I moved my
params
from
init{}
to the function where it was being used that's when it started working . The remaining work is now to present that hierarchical data to ui, which I have tried with a tableview, but not working quite well. I have an entity flight with properties flightNumber, status, arrival, departure. The two last ones are also objects with other properties. Arrival and Departure have both time, city, iataCode... I have read the manual but didn't find such a scenario with object composition.