feat(system): replace our SecurityManager by a Java agent

Part-of: https://github.com/kestra-io/kestra-ee/pull/6153
This commit is contained in:
Loïc Mathieu
2025-12-17 12:50:01 +01:00
parent d16a8de90f
commit 541f0fd157

View File

@@ -9,12 +9,4 @@ public class WorkerSecurityService {
public State.Type callInSecurityContext(AbstractWorkerCallable callable) {
return callable.call();
}
public boolean isInSecurityContext() {
throw new UnsupportedOperationException();
}
public AbstractWorkerCallable getCallable() {
throw new UnsupportedOperationException();
}
}