Log
This commit is contained in:
parent
0322042d73
commit
ca32991c18
|
@ -189,6 +189,7 @@ public abstract class AbstractLifeCycleManager extends AbstractPlugin implements
|
|||
|
||||
@Override
|
||||
public EventExecutionReport onEvent(EventExecutionRequest request) throws EventException, InvalidPluginRequestException {
|
||||
log.info("Executing Event {}",request);
|
||||
EventExecutionReport report=new EventExecutionReport(request);
|
||||
report.getToSetLifecycleInformation().addEventReport(new TriggeredEvents());
|
||||
TriggeredEvents info = report.getToSetLifecycleInformation().getLastEvent();
|
||||
|
|
|
@ -176,6 +176,7 @@ public class SimpleLifeCycleManager extends AbstractLifeCycleManager implements
|
|||
ArrayList<IndexerPluginInterface> toReturn=new ArrayList<>();
|
||||
UseCaseDescriptor desc = request.getUseCaseDescriptor();
|
||||
List<HandlerDeclaration> indexers = desc.getHandlersMapByType().get(IndexerPluginDescriptor.INDEXER);
|
||||
log.debug("Found UCD [{}] Indexers : {}",desc.getId(),indexers.size());
|
||||
for (HandlerDeclaration handlerDeclaration : indexers)
|
||||
toReturn.add((IndexerPluginInterface) pluginManager.getById(handlerDeclaration.getId()));
|
||||
return toReturn;
|
||||
|
@ -185,8 +186,10 @@ public class SimpleLifeCycleManager extends AbstractLifeCycleManager implements
|
|||
ArrayList<MaterializationPlugin> toReturn=new ArrayList<>();
|
||||
UseCaseDescriptor desc = request.getUseCaseDescriptor();
|
||||
List<HandlerDeclaration> materializers = desc.getHandlersMapByType().get(MaterializerPluginDescriptor.MATERIALIZER);
|
||||
for (HandlerDeclaration handlerDeclaration : materializers)
|
||||
log.debug("Found UCD [{}] Materializers : {}",desc.getId(),materializers.size());
|
||||
for (HandlerDeclaration handlerDeclaration : materializers) {
|
||||
toReturn.add((MaterializationPlugin) pluginManager.getById(handlerDeclaration.getId()));
|
||||
}
|
||||
return toReturn;
|
||||
}
|
||||
|
||||
|
|
|
@ -70,10 +70,11 @@ public class UseCaseDescriptor {
|
|||
HashMap<String,List<HandlerDeclaration>> toReturn=new HashMap<>();
|
||||
handlers.forEach(h->{
|
||||
try {
|
||||
if(!toReturn.containsKey(h.getType()))
|
||||
toReturn.put(h.getType(),new ArrayList<>());
|
||||
toReturn.get(h.getType()).add(h);
|
||||
}catch (Throwable t){log.error("Invalid useCaseDescriptor : unable to get Handler Map by Type with {} in useCaseDescriptor [ID {}]",h,this.getId(),t);}
|
||||
if(!toReturn.containsKey(h.getType()))
|
||||
toReturn.put(h.getType(),new ArrayList<>());
|
||||
toReturn.get(h.getType()).add(h);
|
||||
}catch (Throwable t){
|
||||
log.error("Invalid useCaseDescriptor : unable to get Handler Map by Type with {} in useCaseDescriptor [ID {}]",h,this.getId(),t);}
|
||||
});
|
||||
return toReturn;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue