1
2
3
4
5
6
7
8
9
10
11
12
| package foundation.state.approve;
|
| import java.util.List;
|
| import foundation.action.ActionContext;
| import foundation.token.IOnlineUser;
|
| public interface IHierarchyStepsCreator {
|
| List<Step> createSteps(StepType type, IOnlineUser user, ActionContext context) throws Exception;
|
| }
|
|