X-Git-Url: http://git.argeo.org/?a=blobdiff_plain;f=runtime%2Forg.argeo.slc.core%2Fsrc%2Fmain%2Fjava%2Forg%2Fargeo%2Fslc%2Fcore%2Fexecution%2FProcessThread.java;h=3a184808e4fdd7fe347a53a0d97d7af23b629fb7;hb=f86db0937b395c7fa96fa4bf4a29cc2c676fe3f5;hp=177df4241908d58f239fbac9e93580e48cfe8207;hpb=74904a755b5b344238eafa798419b80c5e74f7ed;p=gpl%2Fargeo-slc.git diff --git a/runtime/org.argeo.slc.core/src/main/java/org/argeo/slc/core/execution/ProcessThread.java b/runtime/org.argeo.slc.core/src/main/java/org/argeo/slc/core/execution/ProcessThread.java index 177df4241..3a184808e 100644 --- a/runtime/org.argeo.slc.core/src/main/java/org/argeo/slc/core/execution/ProcessThread.java +++ b/runtime/org.argeo.slc.core/src/main/java/org/argeo/slc/core/execution/ProcessThread.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2007-2012 Mathieu Baudier + * Copyright (C) 2007-2012 Argeo GmbH * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -27,8 +27,10 @@ import org.argeo.slc.SlcException; import org.argeo.slc.execution.ExecutionModulesManager; import org.argeo.slc.execution.ExecutionProcess; import org.argeo.slc.execution.ExecutionStep; -import org.argeo.slc.process.RealizedFlow; +import org.argeo.slc.execution.RealizedFlow; import org.argeo.slc.process.SlcExecution; +import org.springframework.security.Authentication; +import org.springframework.security.context.SecurityContextHolder; /** Thread of the SLC Process, starting the sub executions. */ @SuppressWarnings("deprecation") @@ -57,11 +59,11 @@ public class ProcessThread extends Thread { public final void run() { // authenticate thread - // Authentication authentication = getProcessThreadGroup() - // .getAuthentication(); - // if (authentication == null) - // throw new SlcException("Can only execute authenticated threads"); - // SecurityContextHolder.getContext().setAuthentication(authentication); + Authentication authentication = getProcessThreadGroup() + .getAuthentication(); + if (authentication == null) + throw new SlcException("Can only execute authenticated threads"); + SecurityContextHolder.getContext().setAuthentication(authentication); // log.info("\n##\n## SLC Process #" + process.getUuid() + // " STARTED by "