Minor Update
git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-gwt-service@99781 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
3c4b5a7748
commit
57f0a7c56b
|
@ -3880,10 +3880,10 @@ public class TDGWTServiceImpl extends RemoteServiceServlet implements
|
|||
OpExecutionDirector director = new OpExecutionDirector();
|
||||
director.setOperationExecutionBuilder(opEx);
|
||||
director.constructOperationExecution();
|
||||
ArrayList<OperationExecution> invocations = director
|
||||
.getListOperationExecution();
|
||||
OperationExecution invocation = director
|
||||
.getOperationExecution();
|
||||
|
||||
if (invocations == null) {
|
||||
if (invocation == null) {
|
||||
throw new TDGWTServiceException(
|
||||
"Error in invocation: Operation not supported");
|
||||
}
|
||||
|
@ -3891,8 +3891,8 @@ public class TDGWTServiceImpl extends RemoteServiceServlet implements
|
|||
.getId());
|
||||
|
||||
TabularResourceId serviceTR = new TabularResourceId(id);
|
||||
logger.debug("OperationInvocation: \n" + invocations.toString());
|
||||
Task trTask = service.executeBatch(invocations, serviceTR);
|
||||
logger.debug("OperationInvocation: \n" + invocation.toString());
|
||||
Task trTask = service.execute(invocation, serviceTR);
|
||||
logger.debug("Filter Column on service: TaskId " + trTask.getId());
|
||||
|
||||
TaskWrapper taskWrapper = new TaskWrapper(trTask,
|
||||
|
|
Loading…
Reference in New Issue