601602603604605606607608609610611
* * @return a new {@link ExecutableManager} depending on the ExecType * @throws ExecException */ public ExecutableManager createExecutableManager() throws ExecException { ExecutableManager executableManager = null; switch (execType) { case LOCAL: case MAPREDUCE: {
552553554555556557558559560561562