mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
First pass at fixes/extensions/tidy ups to the search API - part of wiring FTS up as a query language MOB-568
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@14361 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -26,11 +26,14 @@ package org.alfresco.repo.search;
|
||||
|
||||
import org.alfresco.service.cmr.search.LimitBy;
|
||||
import org.alfresco.service.cmr.search.PermissionEvaluationMode;
|
||||
import org.alfresco.service.cmr.search.ResultSetColumn;
|
||||
import org.alfresco.service.cmr.search.ResultSetMetaData;
|
||||
import org.alfresco.service.cmr.search.ResultSetSelector;
|
||||
import org.alfresco.service.cmr.search.ResultSetType;
|
||||
import org.alfresco.service.cmr.search.SearchParameters;
|
||||
|
||||
/**
|
||||
* Simple implementatio of result set meta data.
|
||||
* Simple implementation of result set meta data.
|
||||
*
|
||||
* @author Andy Hind
|
||||
*/
|
||||
@@ -43,6 +46,13 @@ public class SimpleResultSetMetaData implements ResultSetMetaData
|
||||
private SearchParameters searchParameters;
|
||||
|
||||
|
||||
/**
|
||||
* Default properties.
|
||||
*
|
||||
* @param limitedBy
|
||||
* @param permissoinEvaluationMode
|
||||
* @param searchParameters
|
||||
*/
|
||||
public SimpleResultSetMetaData(LimitBy limitedBy, PermissionEvaluationMode permissoinEvaluationMode, SearchParameters searchParameters)
|
||||
{
|
||||
super();
|
||||
@@ -66,4 +76,39 @@ public class SimpleResultSetMetaData implements ResultSetMetaData
|
||||
return searchParameters;
|
||||
}
|
||||
|
||||
public ResultSetColumn getColumn(String name)
|
||||
{
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
public String[] getColumnNames()
|
||||
{
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
public ResultSetColumn getColumns()
|
||||
{
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
public ResultSetType getResultSetType()
|
||||
{
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
public ResultSetSelector getSelector(String name)
|
||||
{
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
public String[] getSelectorNames()
|
||||
{
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
public ResultSetSelector getSelectors()
|
||||
{
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user