I have similar methods that needs to be implemented for different concepts. But call of the methods should be in order. For example let's say my methods are:
m1, m2, m3, m4. There will more than one implementations of them. So, I wanted to collect them in a Java interface. But as they depend on each other, it seemed a bit strange to do so. Then I decided to define a single method in the interface which executes the other ones in order, but this time the interface does not reflect its purpose.
So, what is the best practice to represent such ordered method calls with Java interface and implementations of it?
Thanks in advance