001/*
002 * (C) Copyright 2006-2011 Nuxeo SA (http://nuxeo.com/) and contributors.
003 *
004 * All rights reserved. This program and the accompanying materials
005 * are made available under the terms of the GNU Lesser General Public License
006 * (LGPL) version 2.1 which accompanies this distribution, and is available at
007 * http://www.gnu.org/licenses/lgpl.html
008 *
009 * This library is distributed in the hope that it will be useful,
010 * but WITHOUT ANY WARRANTY; without even the implied warranty of
011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
012 * Lesser General Public License for more details.
013 *
014 * Contributors:
015 *     Thierry Delprat
016 *     Gagnavarslan ehf
017 */
018package org.nuxeo.ecm.webdav.backend;
019
020import org.nuxeo.ecm.core.api.CoreSession;
021import org.nuxeo.ecm.core.api.DocumentModelList;
022
023public class SearchVirtualBackend extends AbstractVirtualBackend {
024
025    private String query;
026
027    public SearchVirtualBackend(String name, String rootUrl, String query, CoreSession session,
028            RealBackendFactory realBackendFactory) {
029        super(name, rootUrl, session, realBackendFactory);
030        this.query = query;
031    }
032
033    @Override
034    protected void init() {
035        DocumentModelList docs = getSession().query(query);
036        registerSimpleBackends(docs);
037    }
038
039}