set(info, "eventTypes", toSet(this.processInstanceEventTypes));
return info;
}
public CorrelationKeyInfo getCorrelationKeyInfo() {
CorrelationKeyInfo info = new CorrelationKeyInfo();
info.setName(this.correlationKeyName);
info.setProcessInstanceId(this.processInstanceId);
List<CorrelationPropertyInfo> props = toProperties(this.correlationKeyProperties);
for (CorrelationPropertyInfo prop : props) {
info.addProperty(prop);
}
set(info, "id", this.correlationKeyId);
return info;
}