Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
mariofusco committed Sep 26, 2024
1 parent f284865 commit af9325e
Showing 1 changed file with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ protected enum TYPE {
"import org.kie.api.KieBase;\n" +
"import org.kie.api.builder.model.KieBaseModel;\n" +
"import org.kie.api.runtime.KieSession;\n" +
"import org.kie.api.runtime.StatelessKieSession;\n" +
"import org.drools.modelcompiler.KieBaseBuilder;\n" +
"\n" +
"\n" +
Expand All @@ -120,6 +121,16 @@ protected enum TYPE {
" public KieSession newKieSession(String sessionName) {\n" +
" return null;\n" +
" }\n" +
"\n" +
" @Override\n" +
" public StatelessKieSession newStatelessKieSession() {\n" +
" return null;\n" +
" }\n" +
"\n" +
" @Override\n" +
" public StatelessKieSession newStatelessKieSession(String sessionName) {\n" +
" return null;\n" +
" }\n" +
"}";

static {
Expand Down

0 comments on commit af9325e

Please sign in to comment.