use of org.camunda.bpm.engine.impl.persistence.entity.DeploymentEntity in project camunda-bpm-platform by camunda.
the class ResourceExecutableScript method loadScriptSource.
protected synchronized void loadScriptSource() {
if (getScriptSource() == null) {
DeploymentEntity deployment = Context.getCoreExecutionContext().getDeployment();
String source = ResourceUtil.loadResourceContent(scriptResource, deployment);
setScriptSource(source);
}
}
Aggregations