Paul Holmes-Higgin cefda8c965 Updated header to LGPL
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@18931 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
2010-03-01 22:48:39 +00:00

37 lines
1.7 KiB
Java

/*
* Copyright (C) 2005-2010 Alfresco Software Limited.
*
* This file is part of Alfresco
*
* Alfresco 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 3 of the License, or
* (at your option) any later version.
*
* Alfresco 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 Alfresco. If not, see <http://www.gnu.org/licenses/>.
*/
package org.alfresco.service.cmr.search;
/**
* This is the common interface for both row (Alfresco node) and column (CMIS style property or function) based results.
* The meta-data for the results sets contains the detailed info on what columns are available. For row based result
* sets there is no selector - all the nodes returned do not have to have a specific type or aspect. For example, an FTS
* search on properties of type d:content has no type constraint implied or otherwise. Searches against properties have
* an implied type, but as there can be more than one property -> more than one type or aspect implied (eg via OR in FTS
* or lucene) they are ignored An iterable result set from a searcher query.<b/> Implementations must implement the
* indexes for row lookup as zero-based.<b/>
*
* @author andyh
*/
public interface ResultSet extends ResultSetSPI<ResultSetRow, ResultSetMetaData> // Specific iterator over ResultSetRows
{
}