60616263646566676869
private boolean isAsynchronous(Object command) { if (! command.getClass().isAnnotationPresent(Command.class)) return false; Command commandAnnotation = command.getClass().getAnnotation(Command.class); return commandAnnotation.asynchronous(); } }