All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.modeshape.jcr.query.model.SetQueryObjectModel Maven / Gradle / Ivy

There is a newer version: 5.4.1.Final
Show newest version
/*
 * ModeShape (http://www.modeshape.org)
 * See the COPYRIGHT.txt file distributed with this work for information
 * regarding copyright ownership.  Some portions may be licensed
 * to Red Hat, Inc. under one or more contributor license agreements.
 * See the AUTHORS.txt file in the distribution for a full listing of 
 * individual contributors.
 *
 * ModeShape is free software. Unless otherwise indicated, all code in ModeShape
 * is licensed to you under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation; either version 2.1 of
 * the License, or (at your option) any later version.
 * 
 * ModeShape is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this software; if not, write to the Free
 * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
 */
package org.modeshape.jcr.query.model;

import org.modeshape.jcr.api.query.qom.Limit;
import org.modeshape.jcr.query.JcrQuery;
import org.modeshape.jcr.query.JcrQueryContext;
import org.modeshape.jcr.query.parse.QueryParser;
import org.modeshape.jcr.query.plan.PlanHints;
import org.modeshape.jcr.value.Path;

/**
 * Implementation of {@link SetQueryObjectModel} that represents a {@link SetQuery set query}.
 */
public class SetQueryObjectModel extends JcrQuery implements org.modeshape.jcr.api.query.qom.SetQueryObjectModel {

    /**
     * Creates a new JCR {@link Query} by specifying the set query statement itself, the language in which the query is stated,
     * the {@link SetQuery} representation and, optionally, the node from which the query was loaded. The language must be a
     * string from among those returned by {@code QueryManager#getSupportedQueryLanguages()}.
     * 
     * @param context the context that was used to create this query and that will be used to execute this query; may not be null
     * @param statement the original statement as supplied by the client; may not be null
     * @param language the language obtained from the {@link QueryParser}; may not be null
     * @param query the parsed set query representation; may not be null
     * @param hints any hints that are to be used; may be null if there are no hints
     * @param storedAtPath the path at which this query was stored, or null if this is not a stored query
     */
    public SetQueryObjectModel( JcrQueryContext context,
                                String statement,
                                String language,
                                SetQuery query,
                                PlanHints hints,
                                Path storedAtPath ) {
        super(context, statement, language, query, hints, storedAtPath);
    }

    @Override
    protected SetQuery query() {
        return (SetQuery)super.query();
    }

    @Override
    public javax.jcr.query.qom.Column[] getColumns() {
        return query().getColumns();
    }

    @Override
    public javax.jcr.query.qom.Ordering[] getOrderings() {
        return query().getOrderings();
    }

    @Override
    public QueryCommand getLeft() {
        return query().getLeft();
    }

    @Override
    public QueryCommand getRight() {
        return getRight();
    }

    @Override
    public String getOperation() {
        return query().getOperation();
    }

    @Override
    public boolean isAll() {
        return query().isAll();
    }

    @Override
    public Limit getLimits() {
        return query().getLimits();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy