use of com.emc.vipr.model.catalog.ExecutionLogList in project coprhd-controller by CoprHD.
the class OrderMapper method toExecutionLogList.
public static ExecutionLogList toExecutionLogList(List<ExecutionTaskLog> executionTaskLogs) {
ExecutionLogList list = new ExecutionLogList();
for (ExecutionTaskLog executionTaskLog : executionTaskLogs) {
ExecutionLogRestRep executionLogRestRep = map(executionTaskLog);
list.getExecutionLogs().add(executionLogRestRep);
}
return list;
}
Aggregations