Skip to content
Snippets Groups Projects
Commit 30625a49 authored by lhameury's avatar lhameury
Browse files

Add new worker type (event)

parent 267149b0
No related branches found
No related tags found
No related merge requests found
Pipeline #68104 failed
......@@ -102,8 +102,9 @@ public class SchedulerService extends AbstractLifecycleBean {
public void selectWorker(Map request) throws JSONException {
String type = (String) request.get(WorkerService.TYPE);
DossierService.ACTION_DOSSIER action = DossierService.ACTION_DOSSIER.valueOf((String) request.get(ACTION));
if (WorkerService.TYPE_DOSSIER.equals(type) || WorkerService.TYPE_DOCUMENT.equals(type)) {
if(WorkerService.TYPE_EVENT.equals(type)) {
taskExecutor.submit(workerService.getHandler(request));
} else if (WorkerService.TYPE_DOSSIER.equals(type) || WorkerService.TYPE_DOCUMENT.equals(type)) {
String id = (String) request.get(WorkerService.ID);
// (id == null) peut arriver pour les mails direct par exemple
......
......@@ -42,6 +42,7 @@ public interface WorkerService {
String TYPE = "type";
String TYPE_DOSSIER = "dossier";
String TYPE_DOCUMENT = "document";
String TYPE_EVENT = "event";
String TYPE_MAIL = "mail";
String WORKSPACE = "workspace://SpacesStore/";
String USERNAME = "username";
......@@ -49,6 +50,9 @@ public interface WorkerService {
String ACTION = "action";
String DOSSIER_CIBLE = "dossierCible";
String AUTOMATIC = "auto";
String EVENT = "event";
String PARENT = "parent";
String OLD_PARENT = "old_parent";
/**
* Returns a runnable which can handle the request passed in parameter.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment