use of net.robinfriedli.aiode.command.interceptor.CommandInterceptorChain in project aiode by robinfriedli.
the class CommandManager method initializeInterceptorChain.
public void initializeInterceptorChain() {
interceptorChain = new CommandInterceptorChain(getCommandInterceptorContributions());
interceptorChainWithoutScripting = new CommandInterceptorChain(getCommandInterceptorContributions(ScriptCommandInterceptor.ScriptCommandInterceptorPreExecution.class, ScriptCommandInterceptor.ScriptCommandInterceptorFinalizer.class));
}
Aggregations