Merge from SEAMIST3

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@10733 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
David Caruana
2008-09-04 11:22:17 +00:00
parent 41b5618d1d
commit a6625b1c61
63 changed files with 5450 additions and 962 deletions

View File

@@ -27,6 +27,8 @@ package org.alfresco.cmis.search;
import java.io.Serializable;
import java.util.Map;
import org.alfresco.service.cmr.repository.NodeRef;
/**
* A row in a CMISResultSet
*
@@ -62,12 +64,25 @@ public interface CMISResultSetRow
public Map<String, Float> getScores();
/**
* Get the score related to the names selector.
* Get the score related to the named selector.
* @param selectorName
* @return - the score.
*/
public float getScore(String selectorName);
/**
* Gets the node refs
* @return a map of selector name to node ref
*/
public Map<String, NodeRef> getNodeRefs();
/**
* Gets the node ref related to the named selector
* @param selectorName
* @return the node ref
*/
public NodeRef getNodeRef(String selectorName);
/**
* Get the index of this result set in the result set
* If you want the overall position in paged reults you have to add the skipCount fo the result set.