mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
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:
@@ -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.
|
||||
|
Reference in New Issue
Block a user