1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.rice.krms.impl.type; |
17 | |
|
18 | |
import org.kuali.rice.krms.api.repository.action.ActionDefinition; |
19 | |
import org.kuali.rice.krms.api.repository.agenda.AgendaDefinition; |
20 | |
import org.kuali.rice.krms.api.repository.function.FunctionDefinition; |
21 | |
import org.kuali.rice.krms.api.repository.proposition.PropositionDefinition; |
22 | |
import org.kuali.rice.krms.api.repository.rule.RuleDefinition; |
23 | |
import org.kuali.rice.krms.api.repository.term.TermResolverDefinition; |
24 | |
import org.kuali.rice.krms.framework.engine.Agenda; |
25 | |
import org.kuali.rice.krms.framework.type.ActionTypeService; |
26 | |
import org.kuali.rice.krms.framework.type.AgendaTypeService; |
27 | |
import org.kuali.rice.krms.framework.type.FunctionTypeService; |
28 | |
import org.kuali.rice.krms.framework.type.PropositionTypeService; |
29 | |
import org.kuali.rice.krms.framework.type.RuleTypeService; |
30 | |
import org.kuali.rice.krms.framework.type.TermResolverTypeService; |
31 | |
|
32 | |
|
33 | |
|
34 | |
|
35 | |
|
36 | |
|
37 | |
|
38 | |
|
39 | |
public interface KrmsTypeResolver { |
40 | |
|
41 | |
PropositionTypeService getPropositionTypeService(PropositionDefinition propositionDefinition); |
42 | |
|
43 | |
ActionTypeService getActionTypeService(ActionDefinition actionDefinition); |
44 | |
|
45 | |
AgendaTypeService getAgendaTypeService(AgendaDefinition actionDefinition); |
46 | |
|
47 | |
RuleTypeService getRuleTypeService(RuleDefinition ruleDefinition); |
48 | |
|
49 | |
TermResolverTypeService getTermResolverTypeService(TermResolverDefinition termResolverDefintion); |
50 | |
|
51 | |
FunctionTypeService getFunctionTypeService(FunctionDefinition functionDefinition); |
52 | |
|
53 | |
} |