mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
More SearchService refactor. Added CMIS SQL to the search service. Tidy ups. FTS supports default namespace and templates via search parameters API. (MOB-568, MOB-569)
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@14463 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -24,6 +24,8 @@
|
||||
*/
|
||||
package org.alfresco.cmis;
|
||||
|
||||
import org.alfresco.service.cmr.search.ResultSetColumn;
|
||||
|
||||
|
||||
/**
|
||||
* The column meta data for a result set
|
||||
@@ -31,23 +33,17 @@ package org.alfresco.cmis;
|
||||
* @author andyh
|
||||
*
|
||||
*/
|
||||
public interface CMISResultSetColumn
|
||||
{
|
||||
/**
|
||||
* The column name
|
||||
* @return - the column name
|
||||
*/
|
||||
public String getName();
|
||||
|
||||
public interface CMISResultSetColumn extends ResultSetColumn
|
||||
{
|
||||
/**
|
||||
* The property definition if there is one for the column
|
||||
* @return - the property definition or null if it does not make sense for the column
|
||||
*/
|
||||
public CMISPropertyDefinition getPropertyDefinition();
|
||||
public CMISPropertyDefinition getCMISPropertyDefinition();
|
||||
|
||||
/**
|
||||
* The type of the column
|
||||
* @return - the CMIS type for the column
|
||||
*/
|
||||
public CMISDataTypeEnum getPropertyType();
|
||||
public CMISDataTypeEnum getCMISDataType();
|
||||
}
|
||||
|
Reference in New Issue
Block a user