1 package com.imcode.db; 2 3 public interface DatabaseCommand { 4 5 Object executeOn( DatabaseConnection connection ) throws DatabaseException ; 6 7 }