160161162163164165166167
{ return mLocalDataSources.get(Arrays.asList(executionEngineName, dataSourceName)); } else { throw new UnknownExecutionEngineException(executionEngineName); } }
170171172173174175176177178
public Location getLocation(String executionEngineName) throws UnknownExecutionEngineException { Location result = mExecutionEngineToLocation.get(executionEngineName); if (result == null) { throw new UnknownExecutionEngineException(executionEngineName); } return result; }