throw new IllegalArgumentException("Unable to lookup XStream parser using name '" + name + "'");
}
ExecutionNodePipelineContextImpl executionNodeContext = (ExecutionNodePipelineContextImpl) context;
GridNode node = executionNodeContext.getGridNode();
CommandExecutor executor = node.get(name, CommandExecutor.class);
if (executor == null) {
throw new IllegalArgumentException("Unable to lookup CommandExecutor using name '" + name + "'");
}
executionNodeContext.setCommandExecutor(executor);
ClassLoader cl = null;