I have a java service which has below one initialized with values.
List<ArrayList> output;
Now I want to assign each element of this above list to a document so that list becomes document array in my java service so that I can use that document in some other flow.
I want to use output data as part of my flow service.So I thought to map the entire data of output variable to a document array but unable to do it. Please suggest
After getting each row, you add it to String variable of your document which is part of document List. With this you will have document list where each document contains a string which has your row ( data ).
After getting each row, you add it to String variable of your document which is part of document List. With this you will have document list where each document contains a string which has your row ( data ).