6.25But don't over-fragment either
Bad Mule architecture can become:
flow
↓
subflow
↓
subflow
↓
subflow
↓
subflow
where each one contains one trivial component.
That's the equivalent of creating:
function getName() {
return customer.name;
}
for everything.
Good decomposition follows meaningful responsibilities.