view geo-backend/src/main/java/de/intevation/gnv/geobackend/base/query/QueryExecutor.java @ 274:ff1b7967e6b9

General CodecCleanup: Remove deprecated TODOS. Replaced Tabs against whitespaces Organize some Imports geo-backend/trunk@280 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Tim Englich <tim.englich@intevation.de>
date Mon, 02 Nov 2009 10:53:06 +0000
parents 5a583cff97ea
children 3cbf11c67fdc
line wrap: on
line source
/**
 *
 */
package de.intevation.gnv.geobackend.base.query;

import java.util.Collection;

import de.intevation.gnv.geobackend.base.Result;
import de.intevation.gnv.geobackend.base.query.exception.QueryException;

/**
 * This Interface provides the Method to execute Queries
 * against a Datastore eg. Databases
 * @author Tim Englich <tim.englich@intevation.de>
 *
 */
public interface QueryExecutor {


    /**
     * This Method executes the Query an returns the Result
     * in an Collection.
     * @param queryID the ID of the Query which should be used.
     * @param filter the Filterarguments to limit the Data
     * @return the fetched Values
     * @throws QueryException
     */
    public Collection<Result> executeQuery(String queryID, String[] filter) throws QueryException;
}

http://dive4elements.wald.intevation.org