/** * <copyright> * </copyright> * * */ package ssl.resource.ssl; /** * A simple interface for commands that can be executed and that return * information about the success of their execution. */ public interface ISslCommand<ContextType> { public boolean execute(ContextType context); }