1 // $Id: Command.java,v 1.1.1.1 2003/09/09 01:24:12 belaban Exp $2 3 package org.jgroups.util;4 5 /**6 * The Command patttern (se Gamma et al.). Implementations would provide their7 * own <code>execute</code> method.8 * @author Bela Ban9 */10 public interface Command {11 boolean execute();12 }13