protected void printApplicationInfo() {
// hide banner as it doesn't apply here
}
private AbstractCommand createOrientCommand(final Method method) {
return new AbstractCompletableCommand()
{
// OrientDB expects the method name to be transformed from camel-case into lower-case with spaces
private final String command = LOWER_CAMEL.to(LOWER_UNDERSCORE, method.getName()).replace('_', ' ');
@Override