/**
* Copyright (c) 2009 - 2010 - OpenFARM
* Licence: MIT
*
* @Author Filipe Martins
* @Date 11-May-2010
*/
package openfarmmanager.manager.web.processor;
import openfarmmanager.util.http.HttpTool;
import openfarmtools.interpreter.exceptions.OpenFarmException;
public interface IProcessor
{
Object process(HttpTool http) throws OpenFarmException;
}
|