001package headfirst.command.remote; 002 003public interface Command { 004 public void execute(); 005}