With a series of object tasks performed asynchronously but needed to be displayed in precise order how can they be sorted and displayed with Thymeleaf. There will be HashSet<StoreTask>
GlobalTasksDTO but need to be displayed within each store listing as Opening:Security:Lighting:Departments per store. Any insight or directions.
public class StoreTask{
Store store;
Lighting lighting;
Security security;
Departments departments;
Opening opening;
}