public List<ProcessingEngineInfo> getProccessingEngineList() throws RemoteException {
WorkflowRepositoryInfo repositoryInfo = new WorkflowRepositoryInfo();
repositoryInfo.setWorkflowRepositorTyp(WorkflowRepositorTyp.FILE);
repositoryInfo.setSrcPaths(new ArrayList<String>());
return Arrays.asList(
new ProcessingEngineInfo(EngineTyp.PERSISTENT,"peId1",repositoryInfo,new DependencyInjectorInfo("POJO"), "None", new StorageInfo(), new ProcessorPoolInfo("poId1",ProcessorPoolTyp.PERSISTENT)),
new ProcessingEngineInfo(EngineTyp.TRANSIENT,"peId2",repositoryInfo,new DependencyInjectorInfo("POJO"), "None", new StorageInfo(), new ProcessorPoolInfo("poId2",ProcessorPoolTyp.TRANSIENT), new ProcessorPoolInfo("poId3",ProcessorPoolTyp.TRANSIENT))
);
}