@MethodAlias(alias= "EventDispatcher.nsi")
private static ServiceInvocation nsi(String type, String methodName, String id, List<Object> args) throws NoSuchMethodException
{
Class<?> forName= ServiceLocator.getInstance().getReflectionService().forName(type);
ServiceInvocation serviceInvocation= new ServiceInvocation(forName, forName.getMethod(methodName, null), args, id);
ScriptHelper.put("serviceInvocation", serviceInvocation, null);
return serviceInvocation;
}