Deploying process together with JavaDelgates used

Hi,
we are migrating from Camunda7 to Camunda8. In our current Camunda7 environment we are using a BPMN process which is using several JavaDelegates. This process and all of its used JavaDelegates is packaged and deployed as one war-File.
How can I manage this in Camunda8/zeebe?

These JavaDelegates are calling the

context.getProcessEngine().getDecisionService();

to execute defined DMNs.
Is this still possible in Camunda8?

Regards
Edmund

Java Delegates are replaced by External Task Pattern with Job Worker.

Here in this thread they talked about having one job worker implementation for all delegate class with configuration. Take a look at this link

From Job Worker you can call DMN using the code.