view geo-backend/src/main/java/de/intevation/gnv/geobackend/base/query/container/QueryContainer.java @ 887:b757def3ff55

Bring @author javadoc tags in form '@author <a href="john.doe@example.com">John Doe</a>' geo-backend/trunk@859 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Mon, 29 Mar 2010 09:45:05 +0000
parents 8b442223741c
children a277ebde74e4
line wrap: on
line source
package de.intevation.gnv.geobackend.base.query.container;

import de.intevation.gnv.geobackend.base.query.container.exception.QueryContainerException;

import java.util.Properties;

/**
 * @author <a href="mailto:tim.englich@intevation.de">Tim Englich</a>
 *
 */
public interface QueryContainer {


    /**
     * Returns the Query specified by the given queryID.
     * @param queryID the ID which speciogies the Query which should be returned
     * @return the Query
     * @throws QueryContainerException
     */
    public String getQuery(String queryID) throws QueryContainerException;

    /**
     * Initializes the QueryContainer
     * @param properties The Properties which should be used for initializing QueryContainer
     * @throws QueryContainerException
     */
    public void initialize(Properties properties) throws QueryContainerException;
}

http://dive4elements.wald.intevation.org