/* * Copyright (C) 2003-2009 eXo Platform SAS. * * This is free software; you can redistribute it and/or modify it * 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. * * This software 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.chromattic.api.query; /** * The query builder allows to create queries. * * @author <a href="mailto:julien.viet@exoplatform.com">Julien Viet</a> * @version $Revision$ */ public interface QueryBuilder<O> { /** * <p>Set the where clause of the query.</p> * * @param where the where clause * @return this builder * @throws NullPointerException if the argument is null */ QueryBuilder<O> where(String where) throws NullPointerException; /** * <p>Set the order by clause of the query with {@link Ordering#ASC}.</p> * * @param orderByProperty the used for ordering * @return this builder * @throws NullPointerException if the argument is null */ QueryBuilder<O> orderBy(String orderByProperty) throws NullPointerException; /** * <p>Set the order by clause of the query.</p> * * @param orderByProperty the used for ordering * @param orderBy define the order (ASC or DESC) * @return this builder * @throws NullPointerException if the argument is null */ QueryBuilder<O> orderBy(String orderByProperty, Ordering orderBy) throws NullPointerException; /** * <p>Compute and returns the <tt>ObjectQuery</tt> for this builder with <code>autoAddJCRPath</code> enabled.</p> * * @return this object query * @throws IllegalStateException if the builder cannot build the query */ Query<O> get() throws IllegalStateException; /** * <p>Compute and returns the <tt>ObjectQuery</tt> for this builder.</p> * * @autoAddJCRPath Indicates whether a jcr:path should be automatically added in case no jcr:path has been set. * @return this object query * @throws IllegalStateException if the builder cannot build the query */ Query<O> get(boolean autoAddJCRPath) throws IllegalStateException; }