/* JFox, the OpenSource J2EE Application Server
 *
 * Copyright (C) 2002 huihoo.com
 * Distributable under GNU LGPL license
 * See the GNU Lesser General Public License for more details.
 */

package org.jfox.mx.http;

import java.util.Properties;

import org.jfox.mx.MxServer;

public interface Command {

  /**
   *
   * @param queryMap query parameters map
   * @return
   * @throws Exception
   */
  String doGet(MxServer mx, Properties queryMap) throws Exception;

}