1 package com.imcode.db; 2 3 public interface Database { 4 5 Object executeCommand( DatabaseCommand databaseCommand ) throws DatabaseException; 6 }