001    package org.shiftone.jrat.api;
002    
003    
004    /**
005     * @author jeff@shiftone.org (Jeff Drost)
006     */
007    public interface Command {
008        Object execute() throws Throwable;
009    }