view gnv-artifacts/src/main/java/de/intevation/gnv/state/cache/QueryObject.java @ 1036:af53410ad551

Add more Javadocs gnv-artifacts/trunk@1095 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Tim Englich <tim.englich@intevation.de>
date Mon, 17 May 2010 14:12:53 +0000
parents 797a6264b89b
children f953c9a559d8
line wrap: on
line source
package de.intevation.gnv.state.cache;
/**
 * This Class is a Container which carries the
 * databasequery which belongs to an state.
 * It is also possible to look up if the query contains a specific
 * TableName.
 * @author <a href="mailto:tim.englich@intevation.de">Tim Englich</a>
 *
 */
public class QueryObject {

    /**
     * The Id of the State the Query belongs to
     */
    private String stateId = null;

    /**
     * The Query which belongs to the State
     */
    private String query = null;

    /**
     * Constructor
     * @param stateId the Id of the State the Query belongs to
     * @param query the Query which belongs to the State
     */
    public QueryObject(String stateId, String query) {
        this.stateId = stateId;
        this.query = query.toUpperCase();
    }

    /**
     * Returns the StateId
     * @return the Stateid
     */
    public String getStateId() {
        return stateId;
    }

    /**
     * Returns the Querystring
     * @return the QueryString
     */
    public String getQuery() {
        return query;
    }

    /**
     * Returns true if the given Name of the Table is Contained in the Query
     * @param tableName the Name of the Table
     * @return true if the Name of the Table is contained in the Query
     */
    public boolean queryContainsTableName(String tableName){
        return this.query.contains(tableName);
    }
}

http://dive4elements.wald.intevation.org