return cols;
}
public static List<Map<String, Object>> getOrderTransactions(OrderTransactionType[] orderTrans) {
List<Map<String, Object>> colsList = FastList.newInstance();
OrderTransactionType orderTran = null;
OrderType order = null;
TransactionType transaction= null;
for (int rowIndex = 0; rowIndex < orderTrans.length; rowIndex++) {
orderTran = orderTrans[rowIndex];
order = orderTran.getOrder();
transaction = orderTran.getTransaction();
if (UtilValidate.isNotEmpty(order)) {
TransactionType[] trans = order.getTransactionArray().getTransaction();
String orderId = order.getOrderID();
for (int rowIndex1 = 0; rowIndex1 < trans.length; rowIndex1++) {
Map<String, Object> transactionMap = EbayStore.getTransaction(trans[rowIndex1]);