Hi Michel,
Sorry for the late reply. I've just oversimplified my example. In our system we have e.g. enums that represent external systems that we connect to.
public enum UpstreamSystem {
SYSTEM_1,
SYSTEM_2,
SYSTEM_3,
SYSTEM_4;
}
Then we have hundreds of places where we need to distinguish between these four - general flow is same for every system, but details differ. Putting entire logic to this enum would make it God Class, what we want to aviod :)
Please consider my request again.
Thanks,
Michal