in fix/deltix/src/main/java/deltix/connector/fix/deltix/message/DeltixNewOrderRequest.java [43:58]
public void applyAttributes(ObjectList<CustomAttribute> attributes) {
if (attributes == null || attributes.isEmpty()) {
return;
}
for (int i = 0; i < attributes.size(); i++) {
CustomAttribute attribute = attributes.get(i);
int key = attribute.getKey();
switch (key) {
case Tag.ExecBroker:
case 6076:
this.setExecBroker(attribute.getValue());
break;
}
}
}