/* * Copyright (c) 2006-2011 Nuxeo SA (http://nuxeo.com/) and others. * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Florent Guillaume */ package org.eclipse.ecr.core.storage.sql.testlib; import org.eclipse.ecr.core.query.QueryFilter; import org.eclipse.ecr.core.storage.StorageException; import org.eclipse.ecr.core.storage.sql.Model; import org.eclipse.ecr.core.storage.sql.Session.PathResolver; import org.eclipse.ecr.core.storage.sql.jdbc.QueryMaker; import org.eclipse.ecr.core.storage.sql.jdbc.SQLInfo; /** * A dummy QueryMaker usable to capture the low level sqlInfo, model and session * from a high-level session, in order to further test QueryMakers. * * @author Florent Guillaume */ public class CapturingQueryMaker implements QueryMaker { public static final String TYPE = "test-capturing"; public static class Captured { public SQLInfo sqlInfo; public Model model; public PathResolver pathResolver; } @Override public String getName() { return TYPE; } @Override public boolean accepts(String queryType) { return TYPE.equals(queryType); } @Override public Query buildQuery(SQLInfo sqlInfo, Model model, PathResolver pathResolver, String query, QueryFilter queryFilter, Object... params) throws StorageException { Captured captured = (Captured) params[0]; captured.sqlInfo = sqlInfo; captured.model = model; captured.pathResolver = pathResolver; return null; } }