1 package com.imcode.db; 2 3 public abstract class AbstractDatabase implements Database { 4 5 public Object executeCommand(DatabaseCommand databaseCommand) throws DatabaseException { 6 return execute(databaseCommand) ; 7 } 8 9 public Object execute(DatabaseCommand databaseCommand) throws DatabaseException { 10 return executeCommand(databaseCommand) ; 11 } 12 }