final String correlationSetName = correlationElement.getAttribute("set");
process.getPostLoadRunnables().add(new Runnable() {
public void run() {
CorrelationSet cSet = BPELUtils.getCorrelationSetForActivity(correlation, correlationSetName);
if (cSet == null) {
cSet = new CorrelationSetProxy(resource.getURI(), correlationSetName);
}
correlation.setSet(cSet);
}
});
}