public void applyAttributes()

in fix/deltix/src/main/java/deltix/connector/fix/deltix/message/DeltixCancelOrderRequest.java [44:59]


    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;
            }
        }
    }